/* Layout Containers */
.holder {
	position: relative;
	width: 100%;
	z-index: 1;
}

.holder#white, .holder#shadow {
	background: #fff;
	z-index: 2;
}

.holder#black {
	background: #000;
	color: #fff;
}

.holder#shadow {
	background: #fff;
	z-index: 1;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Slider Styles */
.da-slider {
	width: 100%;
	min-height: 520px;
	position: relative;
	margin: 0 auto;
	background: #000;
}

.styleupdate da-slide h2 {
	position: relative;
}

.styleupdate .da-slide {
	width: 100%;
	max-width: 1504px;
	margin: 0 auto;
	font-family: Arial, sans-serif;
	text-align: left;
	padding: 20px;
}

.styleupdate .da-slide.da-slide-current {
	z-index: 1000;
	opacity: 1;
	display: flex;
	align-items: flex-start;
}

.styleupdate .da-slide.da-slide-current:after {
	content: "";
	display: table;
	clear: both;
}

.primary-content {
	position: static;
	width: 65%;
	color: #fff;
	font-size: 16px;
	line-height: 1.5;
	padding: 20px;
	float: left;
}

.primary-content h2 {
	position: relative;
	color: #0c80c2;
	font-size: 32px;
	text-align: left;
	white-space: normal;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	position: static;
}

.intro-text {
	margin-bottom: 25px;
	font-size: 18px;
	line-height: 1.6;
	color: #e8e8e8;
}

.secondary-content h3 {
	color: #0c80c2;
	font-size: 20px;
	margin: 20px 0 12px 0;
	font-weight: bold;
}

.service-item {
	margin-bottom: 18px;
}

.service-item h4 {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 8px;
}

.service-item p {
	color: #e8e8e8;
	line-height: 1.5;
	margin-bottom: 10px;
}

.tech-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	margin-bottom: 20px;
}

.tech-item {
	color: #e8e8e8;
	line-height: 1.4;
}

.benefits-list,
.success-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.benefits-list li,
.success-list li {
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
	color: #e8e8e8;
	line-height: 1.5;
}

.benefits-list li:before {
	content: "✓";
	color: #0c80c2;
	position: absolute;
	left: 0;
	font-weight: bold;
}

.success-list li:before {
	content: "→";
	color: #0c80c2;
	position: absolute;
	left: 0;
	font-weight: bold;
}

.cta-section {
	margin-top: 25px;
	padding: 20px;
	background: rgba(12, 128, 194, 0.1);
	border-radius: 8px;
	border: 1px solid rgba(12, 128, 194, 0.3);
}

.cta-text {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 12px;
	text-align: center;
}

.contact-info {
	color: #0c80c2;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

.da-slide .da-img {
	text-align: center;
	width: 30%;
	position: absolute;
	top: 60px;
	right: 2.5%;
	height: 400px;
	line-height: 400px;
}

.da-slide .da-img img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
}

.da-slide .da-link {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 7px;
	box-shadow: 0 1px 1px rgba(0,0,0,0.1);
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	border: 4px solid rgba(12,128,194,0.8);
	padding: 12px 30px;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	background: rgba(255,255,255,0.1);
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.3s ease;
}

.da-slide .da-link:hover {
	background: rgba(255,255,255,0.2);
}

/* Navigation Dots */
.da-dots {
	width: 100%;
	position: absolute;
	text-align: center;
	left: 0;
	bottom: 20px;
	z-index: 2000;
	user-select: none;
}

.da-dots span {
	display: inline-block;
	position: relative;
	width: 12px;
	height: 12px;
	border: 2px #0c80c2 solid;
	border-radius: 3px;
	background: transparent;
	margin: 3px;
	cursor: pointer;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.1) inset, 1px 1px 1px rgba(255,255,255,0.1);
}

.da-dots span.da-dots-current:after {
	content: '';
	width: 10px;
	height: 10px;
	position: absolute;
	top: 1px;
	left: 1px;
	border-radius: 1px;
	background: rgba(255,255,255,0.6);
}

/* Navigation Arrows */
.da-arrows {
	user-select: none;
}

.da-arrows span {
	position: absolute;
	top: 50%;
	height: 36px;
	width: 33px;
	cursor: pointer;
	z-index: 2000;
	opacity: 0.2;
	transition: opacity 0.4s ease;
	transform: translateY(-50%);
}

.da-arrows span:hover {
	opacity: 0.6;
}

.da-arrows span.da-arrows-prev {
	left: 15px;
	background: rgba(255,255,255,0.1);
	border-radius: 3px;
}

.da-arrows span.da-arrows-prev:after {
	content: "‹";
	color: #fff;
	font-size: 24px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.da-arrows span.da-arrows-next {
	right: 15px;
	background: rgba(255,255,255,0.1);
	border-radius: 3px;
}

.da-arrows span.da-arrows-next:after {
	content: "›";
	color: #fff;
	font-size: 24px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Content Section */
.content {
	position: relative;
	max-width: 1504px;
	width: 94%;
	text-align: left;
	margin: 0 auto;
	display: table;
}

.content.Home .column {
	display: inline-block;
	float: left;
	width: 25%;
	height: 415px;
	text-align: center;
	vertical-align: top;
	border-right: 1px solid #e0e0e0;
	border-bottom: 2px #cbcbcb solid;
}

.content.Home .column:last-child {
	border-right: none;
}

.content.Home .column .entry {
	display: inline-block;
	text-align: left;
	margin: 11.3% 2.83%;
	color: #adadad;
}

.content.Home .column .entry a {
	line-height: 2em;
	color: #0c80c2;
}

.content.Home .column .entry .title {
	color: #0c80c2;
	font-size: 16px;
	margin-bottom: 6px;
	font-weight: bold;
}

.content.Home .column .entry .icon {
	text-align: center;
	margin-bottom: 15px;
}

.content.Home .column .entry .icon img {
	width: 89px;
	height: auto;
}

/* Responsive Design */
@media (max-width: 1150px) {
	.content.Home .column {
		width: 50%;
		height: auto;
		min-height: 360px;
	}
	
	.content.Home .column:nth-child(2) {
		border-right: none;
	}
	
	.content.Home .column:nth-child(3) {
		clear: left;
		border-right: 1px solid #e0e0e0;
	}
	
	.content.Home .column .entry {
		margin: 25.6px 6px 20px 6px;
	}
	
	.content.Home .column .entry .icon img {
		width: 70px;
	}
}

@media (max-width: 960px) {
	.content.Home .column {
		width: 100%;
		height: auto;
		min-height: 300px;
		margin-bottom: 20px;
		border-right: none;
		border-bottom: 2px #cbcbcb solid;
	}
	
	.content.Home .column .entry {
		margin: 20px 15px;
		font-size: 13px;
		line-height: 1.4;
	}
	
	.content.Home .column .entry .title {
		font-size: 15px;
	}
	
	.content.Home .column .entry .icon img {
		width: 60px;
	}
}

@media only screen and (orientation: portrait) and (max-device-width: 320px) {
	.content.Home .column {
		height: auto;
		min-height: 400px;
		padding: 20px 0;
	}
	
	.content.Home .column .entry {
		margin: 30px 20px;
		font-size: 26px;
		line-height: 1.3;
	}
	
	.content.Home .column .entry .title {
		font-size: 30px;
		margin-bottom: 15px;
	}
	
	.content.Home .column .entry .icon img {
		width: 80px;
	}
	
	.header .menu-mobile .menu {
		width: 640px;
		border-width: 4px;
	}
	
	.header .menu-mobile .menu .entry {
		padding: 40px 40px;
		border-width: 4px;
	}
}

/* Editor style adjustments */
#tinymce .da-slider {
	height: inherit;
}

#tinymce .da-slide {
	position: relative;
}

/* Placeholder styles for missing images */
.placeholder-image {
	background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
				linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
				linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
				linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
	background-size: 20px 20px;
	background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 12px;
	text-align: center;
}