:root {
		--unique-blue-primary: #2b6cb0;
		--unique-blue-deep: #2c5282;
		--unique-teal-accent: #0c7c7c;
		--unique-violet-accent: #805ad5;
		--unique-gold-accent: #d69e2e;
		--unique-coral-accent: #ed8936;
		--unique-mint-accent: #38a169;
		--unique-indigo-accent: #5a67d8;
		--unique-aqua-accent: #00b5d8;
		--unique-dark-base: #1a202c;
		--unique-light-base: #f7fafc;
		--unique-card-surface: #ffffff;
		--unique-text-dark: #2d3748;
		--unique-text-light: #718096;
		--unique-shadow-large: 0 20px 45px rgba(0, 0, 0, 0.15);
		--unique-shadow-xlarge: 0 25px 55px rgba(0, 0, 0, 0.2);
		--unique-border-curve: 22px;
	}
	/* Unique section identifier */
	
	#unique-capabilities-2024 {
		padding: 15px 0;
		background: linear-gradient(145deg, rgba(247, 250, 252, 1) 0%, rgba(235, 248, 255, 0.95) 50%, rgba(233, 240, 255, 0.95) 100%);
		position: relative;
		overflow: hidden;
		isolation: isolate;
	}
	/* Exclusive background animation */
	
	.unique-dynamic-background {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: radial-gradient(circle at 15% 25%, rgba(43, 108, 176, 0.07) 0%, transparent 55%), radial-gradient(circle at 85% 75%, rgba(128, 90, 213, 0.07) 0%, transparent 55%), radial-gradient(circle at 35% 85%, rgba(12, 124, 124, 0.07) 0%, transparent 55%);
		z-index: -1;
		animation: uniqueBgFloat 25s infinite alternate ease-in-out;
	}
	
	@keyframes uniqueBgFloat {
		0% {
			transform: translate(0, 0) scale(1) rotate(0deg);
		}
		50% {
			transform: translate(20px, 15px) scale(1.05) rotate(1deg);
		}
		100% {
			transform: translate(-15px, 10px) scale(1.08) rotate(-1deg);
		}
	}
	/* Exclusive connecting line */
	
	.unique-connector {
		position: absolute;
		left: 50%;
		top: 0;
		width: 3px;
		height: 0;
		background: linear-gradient(to bottom, transparent, var(--unique-blue-primary), var(--unique-teal-accent), var(--unique-violet-accent), transparent);
		z-index: 0;
		opacity: 0.4;
		animation: uniqueLineExpand 2.2s ease-out forwards;
		animation-delay: 0.8s;
		filter: blur(0.5px);
	}
	
	@keyframes uniqueLineExpand {
		0% {
			height: 0;
			top: 0;
			opacity: 0;
		}
		100% {
			height: 100%;
			top: 0;
			opacity: 0.4;
		}
	}
	
	.unique-container-wrapper {
		position: relative;
		z-index: 1;
	}
	/* Exclusive Image Gallery */
	
	.unique-visual-showcase {
		position: relative;
		height: 720px;
		width: 100%;
		perspective: 1400px;
	}
	
	.unique-visual-card {
		position: absolute;
		border-radius: var(--unique-border-curve);
		overflow: hidden;
		box-shadow: var(--unique-shadow-large);
		transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
		border: 12px solid white;
		background: white;
	}
	
	.unique-visual-primary {
		width: 72%;
		height: 62%;
		top: 4%;
		left: 4%;
		z-index: 3;
		transform: rotate(-5deg);
	}
	
	.unique-visual-secondary {
		width: 62%;
		height: 52%;
		bottom: 8%;
		right: 4%;
		z-index: 2;
		transform: rotate(6deg);
	}
	
	.unique-visual-tertiary {
		width: 58%;
		height: 48%;
		top: 42%;
		left: 18%;
		z-index: 1;
		transform: rotate(-3deg);
	}
	
	.unique-visual-card:hover {
		transform: scale(1.06) rotate(0deg) !important;
		z-index: 20 !important;
		box-shadow: 0 40px 80px rgba(0, 0, 0, 0.22);
		border-width: 8px;
	}
	
	.unique-visual-card img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
	}
	
	.unique-visual-card:hover img {
		transform: scale(1.15);
	}
	/* Exclusive Content Layout */
	
	.unique-content-area {
		padding-left: 10px;
		position: relative;
	}
	
	.unique-section-badge {
		display: inline-flex;
		align-items: center;
		background: linear-gradient(90deg, #2b6cb0, #805ad5);
		color: white;
		padding: 14px 32px;
		border-radius: 100px;
		font-size: 16px;
		font-weight: 700;
		letter-spacing: 1.6px;
		margin-bottom: 40px;
		box-shadow: 0 12px 35px rgba(43, 108, 176, 0.35);
		position: relative;
		overflow: hidden;
		transition: all 0.45s ease;
		border: 2px solid rgba(255, 255, 255, 0.3);
	}
	
	.unique-section-badge:hover {
		transform: translateY(-6px);
		box-shadow: 0 18px 40px rgba(43, 108, 176, 0.45);
		letter-spacing: 2px;
	}
	
	.unique-main-heading {
		font-family: 'Outfit', sans-serif;
		font-size: 3.2rem;
		font-weight: 900;
		margin-bottom: 10px;
		line-height: 1.15;
		color: var(--unique-dark-base);
		position: relative;
		text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
	}
	
	.unique-main-heading strong {
		background: linear-gradient(90deg, #ff4757, #17479e);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
		position: relative;
		display: inline-block;
		background-size: 200% auto;
		animation: uniqueGradientShift 5s ease-in-out infinite alternate;
	}
	
	@keyframes uniqueGradientShift {
		0% {
			background-position: 0% 50%;
		}
		100% {
			background-position: 100% 50%;
		}
	}
	
	.unique-main-heading strong::after {
		content: '';
		position: absolute;
		bottom: 10px;
		left: 0;
		width: 100%;
		height: 10px;
		background: linear-gradient(90deg, rgba(43, 108, 176, 0.2), rgba(128, 90, 213, 0.2), rgba(12, 124, 124, 0.2));
		border-radius: 5px;
		z-index: -1;
		filter: blur(4px);
	}
	/* Exclusive Capabilities List */
	
	.unique-capabilities-grid {
		list-style: none;
		padding: 0;
		position: relative;
		counter-reset: capability-counter;
	}
	
	.unique-capabilities-grid li {
		display: flex;
		align-items: center;
		background: var(--unique-card-surface);
		border-radius: var(--unique-border-curve);
		padding: 10px;
		margin-bottom: 10px;
		box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
		transition: all 0.45s cubic-bezier(0.19, 1, 0.22, 1);
		border-left: 6px solid transparent;
		position: relative;
		overflow: hidden;
		counter-increment: capability-counter;
	}
	
	.unique-capabilities-grid li:hover::before {
		transform: scale(1.1) rotate(15deg);
	}
	
	.unique-capabilities-grid li:hover {
		transform: translateX(18px);
		box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
	}
	/* Unique sequential icons - each distinct */
	
	.unique-icon-wrapper {
		width: 55px;
		height: 55px;
		border-radius: 22px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 28px;
		flex-shrink: 0;
		transition: all 0.55s cubic-bezier(0.19, 1, 0.22, 1);
		position: relative;
		overflow: hidden;
	}
	
	.unique-icon-wrapper i {
		font-size: 24px;
		z-index: 1;
		transition: all 0.4s ease;
	}
	/* Each capability item with unique styling */
	
	.unique-capabilities-grid li:nth-child(1) .unique-icon-wrapper {
		background: linear-gradient(135deg, rgba(43, 108, 176, 0.12), rgba(12, 124, 124, 0.06));
		border: 2px solid rgba(43, 108, 176, 0.25);
		box-shadow: 0 12px 30px rgba(43, 108, 176, 0.2);
	}
	
	.unique-capabilities-grid li:nth-child(1) .unique-icon-wrapper i {
		color: var(--unique-blue-primary);
	}
	
	.unique-capabilities-grid li:nth-child(1):hover .unique-icon-wrapper {
		background: linear-gradient(135deg, var(--unique-blue-primary), var(--unique-teal-accent));
		transform: scale(1.18) rotate(12deg);
		box-shadow: 0 18px 40px rgba(43, 108, 176, 0.35);
	}
	
	.unique-capabilities-grid li:nth-child(1):hover .unique-icon-wrapper i {
		color: white;
		transform: scale(1.12);
	}
	
	.unique-capabilities-grid li:nth-child(1):hover {
		border-left-color: var(--unique-blue-primary);
	}
	
	.unique-capabilities-grid li:nth-child(2) .unique-icon-wrapper {
		background: linear-gradient(135deg, rgba(214, 158, 46, 0.12), rgba(237, 137, 54, 0.06));
		border: 2px solid rgba(214, 158, 46, 0.25);
		box-shadow: 0 12px 30px rgba(214, 158, 46, 0.2);
	}
	
	.unique-capabilities-grid li:nth-child(2) .unique-icon-wrapper i {
		color: var(--unique-gold-accent);
	}
	
	.unique-capabilities-grid li:nth-child(2):hover .unique-icon-wrapper {
		background: linear-gradient(135deg, var(--unique-gold-accent), var(--unique-coral-accent));
		transform: scale(1.18) rotate(-12deg);
		box-shadow: 0 18px 40px rgba(214, 158, 46, 0.35);
	}
	
	.unique-capabilities-grid li:nth-child(2):hover .unique-icon-wrapper i {
		color: white;
		transform: scale(1.12);
	}
	
	.unique-capabilities-grid li:nth-child(2):hover {
		border-left-color: var(--unique-gold-accent);
	}
	
	.unique-capabilities-grid li:nth-child(3) .unique-icon-wrapper {
		background: linear-gradient(135deg, rgba(128, 90, 213, 0.12), rgba(90, 103, 216, 0.06));
		border: 2px solid rgba(128, 90, 213, 0.25);
		box-shadow: 0 12px 30px rgba(128, 90, 213, 0.2);
	}
	
	.unique-capabilities-grid li:nth-child(3) .unique-icon-wrapper i {
		color: var(--unique-violet-accent);
	}
	
	.unique-capabilities-grid li:nth-child(3):hover .unique-icon-wrapper {
		background: linear-gradient(135deg, var(--unique-violet-accent), var(--unique-indigo-accent));
		transform: scale(1.18) rotate(10deg);
		box-shadow: 0 18px 40px rgba(128, 90, 213, 0.35);
	}
	
	.unique-capabilities-grid li:nth-child(3):hover .unique-icon-wrapper i {
		color: white;
		transform: scale(1.12);
	}
	
	.unique-capabilities-grid li:nth-child(3):hover {
		border-left-color: var(--unique-violet-accent);
	}
	
	.unique-capabilities-grid li:nth-child(4) .unique-icon-wrapper {
		background: linear-gradient(135deg, rgba(56, 161, 105, 0.12), rgba(12, 124, 124, 0.06));
		border: 2px solid rgba(56, 161, 105, 0.25);
		box-shadow: 0 12px 30px rgba(56, 161, 105, 0.2);
	}
	
	.unique-capabilities-grid li:nth-child(4) .unique-icon-wrapper i {
		color: var(--unique-mint-accent);
	}
	
	.unique-capabilities-grid li:nth-child(4):hover .unique-icon-wrapper {
		background: linear-gradient(135deg, var(--unique-mint-accent), var(--unique-teal-accent));
		transform: scale(1.18) rotate(-10deg);
		box-shadow: 0 18px 40px rgba(56, 161, 105, 0.35);
	}
	
	.unique-capabilities-grid li:nth-child(4):hover .unique-icon-wrapper i {
		color: white;
		transform: scale(1.12);
	}
	
	.unique-capabilities-grid li:nth-child(4):hover {
		border-left-color: var(--unique-mint-accent);
	}
	
	.unique-capabilities-grid li:nth-child(5) .unique-icon-wrapper {
		background: linear-gradient(135deg, rgba(90, 103, 216, 0.12), rgba(128, 90, 213, 0.06));
		border: 2px solid rgba(90, 103, 216, 0.25);
		box-shadow: 0 12px 30px rgba(90, 103, 216, 0.2);
	}
	
	.unique-capabilities-grid li:nth-child(5) .unique-icon-wrapper i {
		color: var(--unique-indigo-accent);
	}
	
	.unique-capabilities-grid li:nth-child(5):hover .unique-icon-wrapper {
		background: linear-gradient(135deg, var(--unique-indigo-accent), var(--unique-violet-accent));
		transform: scale(1.18) rotate(14deg);
		box-shadow: 0 18px 40px rgba(90, 103, 216, 0.35);
	}
	
	.unique-capabilities-grid li:nth-child(5):hover .unique-icon-wrapper i {
		color: white;
		transform: scale(1.12);
	}
	
	.unique-capabilities-grid li:nth-child(5):hover {
		border-left-color: var(--unique-indigo-accent);
	}
	
	.unique-capabilities-grid li:nth-child(6) .unique-icon-wrapper {
		background: linear-gradient(135deg, rgba(12, 124, 124, 0.12), rgba(56, 161, 105, 0.06));
		border: 2px solid rgba(12, 124, 124, 0.25);
		box-shadow: 0 12px 30px rgba(12, 124, 124, 0.2);
	}
	
	.unique-capabilities-grid li:nth-child(6) .unique-icon-wrapper i {
		color: var(--unique-teal-accent);
	}
	
	.unique-capabilities-grid li:nth-child(6):hover .unique-icon-wrapper {
		background: linear-gradient(135deg, var(--unique-teal-accent), var(--unique-mint-accent));
		transform: scale(1.18) rotate(-14deg);
		box-shadow: 0 18px 40px rgba(12, 124, 124, 0.35);
	}
	
	.unique-capabilities-grid li:nth-child(6):hover .unique-icon-wrapper i {
		color: white;
		transform: scale(1.12);
	}
	
	.unique-capabilities-grid li:nth-child(6):hover {
		border-left-color: var(--unique-teal-accent);
	}
	
	.unique-capabilities-grid h5 {
		font-family: 'Outfit', sans-serif;
		font-size: 1.1rem;
		font-weight: 800;
		margin-bottom: 10px;
		color: var(--unique-dark-base);
		transition: color 0.35s ease;
		letter-spacing: 0.3px;
	}
	
	.unique-capabilities-grid li:hover h5 {
		background: linear-gradient(90deg, #2b6cb0, #805ad5);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}
	
	.unique-capabilities-grid p {
		color: #000;
		font-size: 0.8rem;
		margin: 0;
		line-height: 1.5;
	}
	/* Unique progress indicator */
	
	.unique-progress-indicator {
		position: absolute;
		right: 35px;
		top: 50%;
		transform: translateY(-50%);
		font-family: 'Outfit', sans-serif;
		font-weight: 800;
		color: var(--unique-text-light);
		font-size: 1rem;
		opacity: 0;
		transition: opacity 0.35s ease, transform 0.35s ease;
	}
	
	.unique-capabilities-grid li:hover .unique-progress-indicator {
		opacity: 1;
		transform: translateY(-50%) translateX(5px);
	}
	/* Responsive design with unique names */
	
	@media (max-width: 1200px) {
		.unique-visual-showcase {
			height: 650px;
		}
		.unique-content-area {
			padding-left: 45px;
		}
	}
	
	@media (max-width: 992px) {
		.unique-visual-showcase {
			height: 550px;
			margin-bottom: 70px;
		}
		.unique-content-area {
			padding-left: 0;
		}
		.unique-main-heading {
			font-size: 2.8rem;
		}
		.unique-icon-wrapper {
			width: 75px;
			height: 75px;
			margin-right: 25px;
		}
		.unique-icon-wrapper i {
			font-size: 32px;
		}
		.unique-capabilities-grid li {
			padding: 28px;
		}
	}
	
	@media (max-width: 768px) {
		#unique-capabilities-2024 {
			padding: 90px 0;
		}
		.unique-visual-showcase {
			height: 450px;
		}
		.unique-visual-card {
			width: 88% !important;
		}
		.unique-main-heading {
			font-size: 2.5rem;
		}
		.unique-icon-wrapper {
			width: 65px;
			height: 65px;
			margin-right: 20px;
		}
		.unique-icon-wrapper i {
			font-size: 28px;
		}
		.unique-capabilities-grid li {
			padding: 24px;
		}
		.unique-capabilities-grid h5 {
			font-size: 1.3rem;
		}
		.unique-capabilities-grid p {
			font-size: 0.9rem;
		}
	}
	
	@media (max-width: 576px) {
		.unique-capabilities-grid li {
			flex-direction: column;
			text-align: center;
		}
		.unique-icon-wrapper {
			margin-right: 0;
			margin-bottom: 25px;
		}
		.unique-capabilities-grid li::before {
			top: -12px;
			right: -12px;
			width: 45px;
			height: 45px;
			font-size: 1.1rem;
		}
	}

	.industries .sec-title {
		margin-bottom: 0px;
		padding-bottom: 0px;
	}

	.bottom-space {
		margin-bottom: 50px;
	}

	/* Base Styles */
.tech-gradient-section {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, #f4f7fb 0%, #e9eef6 100%);
    overflow: hidden;
}

/* Light Version Specific */
.tech-gradient-section.light-version {
    background: linear-gradient(135deg, #f4f7fb 0%, #e9eef6 100%);
}

.tech-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(23, 71, 158, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 71, 158, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.glow-orb:nth-child(2) {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.glow-orb.red {
    background: radial-gradient(circle, rgba(225, 27, 34, 0.12) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation-delay: 2s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.05); }
    100% { transform: translate(50px, -50px) scale(0.95); }
}

/* Section Header */
.section-header {
    position: relative;
    z-index: 2;
}

.section-title {
    color: #17479e;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-gradient {
    background: linear-gradient(90deg, #3b82f6, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Tech Cards */
.tech-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.08) 0%, rgba(239, 68, 68, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-8px);
    border-color: rgba(148, 163, 184, 0.4);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.08),
        0 0 40px rgba(96, 165, 250, 0.15);
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Card-specific icon backgrounds */
.tech-card:nth-child(1) .tech-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.tech-card:nth-child(2) .tech-icon {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.tech-card:nth-child(3) .tech-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.tech-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent 30%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.tech-card h3 {
    color: #1e293b;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.tech-card p {
    color: #475569;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .tech-gradient-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .tech-card {
        padding: 35px 25px;
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .tech-card h3 {
        font-size: 20px;
    }
    
    .tech-card p {
        font-size: 15px;
    }
    
    .glow-orb {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 767px) {
    .tech-gradient-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .row.g-4 {
        gap: 20px !important;
    }
    
    .tech-card {
        padding: 30px 20px;
        margin-bottom: 0;
    }
    
    .tech-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .tech-card h3 {
        font-size: 19px;
    }
    
    .tech-card p {
        font-size: 15px;
    }
    
    .glow-orb {
        width: 250px;
        height: 250px;
        filter: blur(60px);
    }
}

@media (max-width: 575px) {
    .tech-gradient-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .tech-card {
        padding: 25px 20px;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    .tech-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .tech-card p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .glow-orb {
        width: 200px;
        height: 200px;
        filter: blur(50px);
    }
}

@media (max-width: 375px) {
    .section-title {
        font-size: 24px;
    }
    
    .tech-card {
        padding: 20px 15px;
    }
    
    .tech-card h3 {
        font-size: 17px;
    }
    
    .tech-card p {
        font-size: 13px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .tech-card:hover {
        transform: none;
    }
    
    .tech-card:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
}
	.case-studies-style1 .single-case-studies-style1 {
    position: relative;
}

.case-studies-style1 .case-studies-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.case-studies-style1 .case-studies-title h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
}

.case-studies-style1 .case-studies-title h3 a {
    color: #ffffff;
    text-decoration: none;
}

.case-studies-style1 .case-studies-title h3 a:hover {
    color: #your-hover-color;
}

/* Optional hover effect */
.case-studies-style1 .single-case-studies-style1:hover .case-studies-title {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-5px);
}


/* =========================================
   COMPACT SP-CONTACT SECTION
========================================= */
	
	.sp-contact-section {
		background: white;
		padding: 50px 0;
		position: relative;
		overflow: hidden;
	}
	
	.sp-contact-bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: white;
		z-index: 1;
	}
	
	.sp-contact-container {
		position: relative;
		z-index: 2;
		max-width: 1000px;
		margin: 0 auto;
		padding: 0 15px;
	}
	/* HEADER - Compact */
	
	.sp-contact-header {
		max-width: 650px;
		margin: 0 auto 25px;
		text-align: center;
	}
	
	.sp-contact-title {
		font-size: 32px;
		font-weight: 700;
		margin-bottom: 8px;
		color: #17479e;
		letter-spacing: -0.5px;
	}
	
	.sp-contact-desc {
		font-size: 15px;
		color: #455a64;
		line-height: 1.5;
		max-width: 550px;
		margin: 0 auto;
	}
	/* FORM CARD - Compact */
	
	.sp-contact-formWrap {
		position: relative;
		max-width: 850px;
		margin: 0 auto;
		border-radius: 6px;
		padding: 25px;
		background: white;
		box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08), 0 0 1px rgba(0, 0, 0, 0.15);
		border: 1px solid #e0e0e0;
	}
	/* FORM ROWS - Compact */
	
	.sp-form-row {
		display: flex;
		gap: 15px;
		margin-bottom: 15px;
	}
	
	.sp-full-width {
		display: block;
	}
	/* FIELDS - Compact */
	
	.sp-field {
		flex: 1;
		position: relative;
	}
	
	.sp-field label {
		display: block;
		font-size: 12px;
		font-weight: 600;
		margin-bottom: 4px;
		color: #37474f;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}
	/* INPUTS - Compact */
	
	.sp-field input,
	.sp-field select,
	.sp-field textarea {
		width: 100%;
		padding: 10px 12px;
		border: 1px solid #bdbdbd;
		border-radius: 4px;
		font-size: 13px;
		background: #fafafa!important;
		font-family: inherit;
		transition: all 0.2s ease;
		box-sizing: border-box;
	}
	
	.sp-field textarea {
		min-height: 80px;
		resize: vertical;
	}
	/* FOCUS STATES */
	
	.sp-field input:focus,
	.sp-field select:focus,
	.sp-field textarea:focus {
		outline: none;
		border-color: #17479e;
		background: white;
		box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.1);
	}
	/* BUTTON - Compact */
	
	.sp-contact-btn {
		width: 100%;
		padding: 12px 16px;
		border-radius: 4px;
		border: none;
		cursor: pointer;
		font-weight: 600;
		font-size: 13px;
		color: white;
		background: #17479e;
		transition: all 0.2s ease;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}
	
	.sp-contact-btn:hover {
		background: #283593;
		transform: translateY(-1px);
		box-shadow: 0 3px 8px rgba(26, 35, 126, 0.25);
	}
	
	.sp-contact-note {
		display: block;
		margin-top: 4px;
		font-size: 10px;
		color: #757575;
		font-style: italic;
	}
	/* CONSENT - Compact */
	
	.sp-consent-row {
		display: flex;
		align-items: center;
		gap: 6px;
		font-size: 12px;
		color: #37474f;
		font-weight: 500;
	}
	
	.sp-consent-row input {
		width: 14px;
		height: 14px;
	}
	
	.sp-consent-desc {
		margin: 6px 0 0;
		font-size: 11px;
		color: #757575;
		font-style: italic;
	}
	/* TOP ACCENT LINE */
	
	.sp-contact-formWrap::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 3px;
		background: linear-gradient(90deg, #17479e, #3949ab, #17479e);
		border-radius: 6px 6px 0 0;
	}
	/* =========================================
   ANIMATED BACKGROUND PATTERN - Enhanced
========================================= */
	
	.sp-pattern-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		z-index: 1;
		opacity: 0.15;
	}
	/* Animated Grid Pattern */
	
	.sp-pattern-grid {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: linear-gradient(rgba(26, 35, 126, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 35, 126, 0.08) 1px, transparent 1px);
		background-size: 40px 40px;
		animation: sp-gridMove 20s linear infinite;
	}
	
	@keyframes sp-gridMove {
		0% {
			background-position: 0 0;
		}
		100% {
			background-position: 40px 40px;
		}
	}
	/* Floating Dots with enhanced animation */
	
	.sp-pattern-dot {
		position: absolute;
		border-radius: 50%;
		background: radial-gradient(circle, rgba(26, 35, 126, 0.15) 0%, transparent 70%);
		animation: sp-dotFloat 15s infinite ease-in-out;
	}
	
	.p1 {
		width: 35px;
		height: 35px;
		top: 15%;
		left: 10%;
		animation-delay: 0s;
	}
	
	.p2 {
		width: 25px;
		height: 25px;
		top: 60%;
		right: 15%;
		animation-delay: 2s;
		animation-duration: 18s;
	}
	
	.p3 {
		width: 30px;
		height: 30px;
		bottom: 25%;
		left: 20%;
		animation-delay: 4s;
		animation-duration: 20s;
	}
	
	.p4 {
		width: 20px;
		height: 20px;
		top: 40%;
		right: 25%;
		animation-delay: 6s;
		animation-duration: 16s;
	}
	
	.p5 {
		width: 28px;
		height: 28px;
		bottom: 40%;
		left: 5%;
		animation-delay: 8s;
		animation-duration: 22s;
	}
	
	@keyframes sp-dotFloat {
		0% {
			transform: translate(0, 0) scale(1);
			opacity: 0.3;
		}
		25% {
			transform: translate(15px, -15px) scale(1.2);
			opacity: 0.5;
		}
		50% {
			transform: translate(-10px, 10px) scale(0.9);
			opacity: 0.3;
		}
		75% {
			transform: translate(10px, -10px) scale(1.1);
			opacity: 0.4;
		}
		100% {
			transform: translate(0, 0) scale(1);
			opacity: 0.3;
		}
	}
	/* Scanning Lines with glow effect */
	
	.sp-pattern-line {
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		background: linear-gradient(90deg, transparent, rgba(26, 35, 126, 0.2), rgba(26, 35, 126, 0.3), rgba(26, 35, 126, 0.2), transparent);
		animation: sp-lineScan 12s infinite linear;
		box-shadow: 0 0 10px rgba(26, 35, 126, 0.2);
	}
	
	.l1 {
		top: 30%;
		animation-delay: 0s;
	}
	
	.l2 {
		top: 70%;
		animation-delay: 6s;
		animation-duration: 15s;
	}
	
	@keyframes sp-lineScan {
		0% {
			transform: translateX(-100%);
			opacity: 0;
		}
		10% {
			opacity: 0.8;
		}
		90% {
			opacity: 0.8;
		}
		100% {
			transform: translateX(100%);
			opacity: 0;
		}
	}
	/* Pulsing circles */
	
	.sp-pattern-pulse {
		position: absolute;
		border-radius: 50%;
		border: 1px solid rgba(26, 35, 126, 0.15);
		animation: sp-pulseWave 4s infinite ease-out;
	}
	
	.pulse1 {
		width: 50px;
		height: 50px;
		top: 20%;
		right: 10%;
		animation-delay: 0s;
	}
	
	.pulse2 {
		width: 40px;
		height: 40px;
		bottom: 30%;
		left: 15%;
		animation-delay: 1.3s;
	}
	
	.pulse3 {
		width: 60px;
		height: 60px;
		top: 50%;
		right: 20%;
		animation-delay: 2.6s;
	}
	
	@keyframes sp-pulseWave {
		0% {
			transform: scale(0.8);
			opacity: 0;
		}
		50% {
			opacity: 0.4;
		}
		100% {
			transform: scale(1.5);
			opacity: 0;
		}
	}
	/* Orbital elements */
	
	.sp-pattern-orb {
		position: absolute;
		border-radius: 50%;
		background: radial-gradient(circle, rgba(26, 35, 126, 0.1) 0%, transparent 70%);
		animation: sp-orbRotate 25s infinite linear;
	}
	
	.orb1 {
		width: 40px;
		height: 40px;
		top: 25%;
		left: 30%;
		animation-delay: 0s;
	}
	
	.orb2 {
		width: 30px;
		height: 30px;
		bottom: 35%;
		right: 30%;
		animation-delay: 12.5s;
		animation-duration: 30s;
		animation-direction: reverse;
	}
	
	@keyframes sp-orbRotate {
		0% {
			transform: rotate(0deg) translateX(30px) rotate(0deg);
		}
		100% {
			transform: rotate(360deg) translateX(30px) rotate(-360deg);
		}
	}
	/* Subtle background glow */
	
	.sp-pattern-overlay::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: radial-gradient(circle at 30% 40%, rgba(26, 35, 126, 0.05) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(26, 35, 126, 0.05) 0%, transparent 50%);
		animation: sp-bgPulse 8s infinite alternate ease-in-out;
	}
	
	@keyframes sp-bgPulse {
		0% {
			opacity: 0.3;
		}
		100% {
			opacity: 0.6;
		}
	}
	/* =========================================
   RESPONSIVE - Compact
========================================= */
	
	@media (max-width: 768px) {
		.sp-contact-section {
			padding: 40px 0;
		}
		.sp-contact-title {
			font-size: 26px;
		}
		.sp-contact-desc {
			font-size: 14px;
		}
		.sp-contact-formWrap {
			padding: 20px;
		}
		.sp-form-row {
			flex-direction: column;
			gap: 10px;
			margin-bottom: 10px;
		}
		.sp-field input,
		.sp-field select,
		.sp-field textarea {
			padding: 8px 10px;
		}
		/* Reduce pattern intensity on mobile */
		.sp-pattern-overlay {
			opacity: 0.1;
		}
		.sp-pattern-pulse,
		.sp-pattern-orb {
			display: none;
		}
	}
	
	@media (max-width: 480px) {
		.sp-contact-section {
			padding: 30px 0;
		}
		.sp-contact-formWrap {
			padding: 15px;
			border-radius: 4px;
		}
		.sp-contact-title {
			font-size: 22px;
			margin-bottom: 6px;
		}
		.sp-contact-desc {
			font-size: 13px;
		}
		.sp-contact-btn {
			padding: 10px 14px;
			font-size: 12px;
		}
		/* Hide most patterns on very small screens */
		.sp-pattern-overlay {
			display: none;
		}
	}

	/* ================================
   SECTION BASE
================================ */
	
	.geometric-services {
		position: relative;
		padding: 100px 0;
		overflow: hidden;
		background: radial-gradient(circle at top left, #eef2ff, #f8fafc 60%);
		font-family: "Inter", system-ui, sans-serif;
	}
	/* ================================
   BACKGROUND EFFECT
================================ */
	
	.geometric-background {
		position: absolute;
		inset: 0;
		z-index: 0;
		pointer-events: none;
	}
	
	.geo-shape {
		position: absolute;
		border-radius: 50%;
		filter: blur(60px);
		opacity: 0.45;
		animation: float 14s infinite alternate ease-in-out;
	}
	
	.text-red {
		color: #ff4757;
	}
	
	.geo-1 {
		width: 360px;
		height: 360px;
		background: #3b82f6;
		top: -100px;
		left: -120px;
	}
	
	.geo-2 {
		width: 420px;
		height: 420px;
		background: #22c55e;
		bottom: -120px;
		right: -140px;
		animation-delay: 2s;
	}
	
	.geo-3 {
		width: 260px;
		height: 260px;
		background: #6366f1;
		top: 40%;
		left: 55%;
		animation-delay: 4s;
	}
	
	@keyframes float {
		from {
			transform: translateY(0px);
		}
		to {
			transform: translateY(-40px);
		}
	}
	/* ================================
   CONTAINER LAYERING
================================ */
	
	.geometric-services .container {
		position: relative;
		z-index: 2;
	}
	/* ================================
   HEADER
================================ */
	
	.geo-header {
		text-align: center;
		margin-bottom: 70px;
	}
	
	.geo-title {
		font-size: 46px;
		font-weight: 800;
		color: #0f172a;
		letter-spacing: -0.02em;
	}
	/* ================================
   GRID LAYOUT
================================ */
	
	.geo-content-grid {
		display: grid;
		grid-template-columns: 360px 1fr;
		gap: 40px;
	}
	/* ================================
   LEFT NAV PANEL
================================ */
	
	.service-nav {
		background: rgba(255, 255, 255, 0.7);
		backdrop-filter: blur(14px);
		border-radius: 20px;
		padding: 30px;
		border: 1px solid rgba(255, 255, 255, 0.6);
		box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
	}
	
	.nav-title {
		font-size: 18px;
		font-weight: 700;
		color: #1e293b;
		margin-bottom: 25px;
	}
	
	.nav-items {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}
	
	.nav-item {
		background: transparent;
		border: 1px solid #e5e7eb;
		border-radius: 14px;
		padding: 16px 18px;
		display: flex;
		align-items: center;
		gap: 14px;
		cursor: pointer;
		font-size: 14px;
		color: #334155;
		transition: all 0.35s ease;
	}
	
	.nav-number {
		font-weight: 700;
		color: #64748b;
	}
	
	.nav-arrow {
		margin-left: auto;
		opacity: 0.4;
		transition: transform 0.3s ease;
	}
	
	.nav-item:hover {
		background: #f8fafc;
		transform: translateX(6px);
	}
	
	.nav-item.active {
		background: linear-gradient(135deg, #17479e, #22c55e);
		color: white;
		border-color: transparent;
		box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
	}
	
	.nav-item.active .nav-number,
	.nav-item.active .nav-arrow {
		color: white;
		opacity: 1;
	}
	
	.nav-item.active .nav-arrow {
		transform: translateX(4px);
	}
	/* ================================
   DETAILS PANEL
================================ */
	

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px!important;
    }
}
	.service-details {
		position: relative;
	}
	
	.detail-card {
		display: none;
		background: rgba(255, 255, 255, 0.85);
		backdrop-filter: blur(16px);
		border-radius: 26px;
		padding: 45px;
		border: 1px solid rgba(255, 255, 255, 0.6);
		box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
		animation: fadeUp 0.45s ease;
	}
	
	.detail-card.active {
		display: block;
	}
	
	@keyframes fadeUp {
		from {
			opacity: 0;
			transform: translateY(15px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	
	.detail-title {
		font-size: 32px;
		font-weight: 800;
		color: #0f172a;
		margin-bottom: 20px;
	}
	/* ================================
   HIGHLIGHT
================================ */
	
	.detail-highlight {
		background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(34, 197, 94, 0.08));
		border-left: 4px solid #22c55e;
		padding: 20px 24px;
		border-radius: 14px;
		color: #065f46;
		font-size: 16px;
		margin-bottom: 35px;
	}
	/* ================================
   CONTENT
================================ */
	
	.detail-content {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.content-title {
		font-size: 16px;
		font-weight: 700;
		color: #1e293b;
		margin-bottom: 12px;
	}
	
	.content-list li {
		margin-bottom: 10px;
		color: #475569;
	}
	
	.value-statement {
		background: #f1f5f9;
		padding: 18px;
		border-radius: 14px;
		color: #0f172a;
		font-weight: 600;
	}
	
	.text-decoration-none {
		text-decoration: none;
	}
	/* ================================
   RESPONSIVE
================================ */
	
	@media (max-width: 992px) {
		.geo-content-grid {
			grid-template-columns: 1fr;
		}
	}




	.hero-2 .th-hero-bg:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgb(11 20 34 / 0%)!important;
    border-radius: 24px;
}

 /* Services Slider Styles - Only 3 items showing one after another */
        .services-slider-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            padding: 20px 0;
        }
        .services-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 30px;
        }
        .slider-slide {
            flex: 0 0 calc(33.333% - 20px);
            min-width: 0;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        .slider-slide.active {
            opacity: 1;
        }
        .single-service-style5 {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .single-service-style5:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        .icon-box img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 20px;
        }
        .title-box h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }
        .title-box h3 span {
            color: #e31b23;
        }
        .service-desc {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .btn-box a {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .btn-box a:hover {
            color: #e31b23;
        }
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .dot.active {
            background: #e31b23;
            transform: scale(1.3);
        }
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #333;
            transition: all 0.3s ease;
            z-index: 10;
        }
        .slider-arrow:hover {
            background: #e31b23;
            color: #fff;
            border-color: #e31b23;
        }
        .slider-arrow.prev {
            left: 10px;
        }
        .slider-arrow.next {
            right: 10px;
        }
        @media (max-width: 992px) {
            .slider-slide {
                flex: 0 0 calc(50% - 15px);
            }
        }
        @media (max-width: 576px) {
            .slider-slide {
                flex: 0 0 100%;
            }
        }