/* ForFront Industries — brand overrides on Induxt template */

.logo-box .logo img.forfront-logo,
.main-footer_logo img.forfront-logo {
	height: 48px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
}

.mobile-menu .nav-logo img.forfront-logo {
	max-height: 44px;
	width: auto;
}

/* Hero slider: keep CNC / machine shop imagery framed for left-aligned headline */
.slider-one .slider-one_image-layer {
	background-position: 65% center;
}

/* Hero: optional hide of decorative mega-title if it clashes with brand */
.slider-one_big-title {
	opacity: 0.12;
}

/*
 * Programs / project carousel: theme masks images with project-1-1.png.
 * If that asset is missing (empty gallery after export), the photo disappears.
 */
.project-one .project-block_one-image img {
	-webkit-mask-image: none;
	mask-image: none;
	border-radius: 28px;
	object-fit: cover;
	min-height: 280px;
}

/*
 * Manufacturing grid (services-2.html pattern: .service-five + .service-block_two).
 * Theme masks .service-block_two-inner with service-3-1.png; if missing, cards vanish.
 * clip-path approximates the stepped top-left corner from the original mask.
 */
.service-five .service-block_two-inner {
	-webkit-mask-image: none;
	mask-image: none;
	clip-path: polygon(0 56px, 56px 56px, 56px 0, 100% 0, 100% 100%, 0 100%);
}

.service-five .forfront-service-five-btn {
	margin-top: 22px;
}

/* services.html — page title & service image masks (HTTrack broke many PNG paths) */
.forfront-page-title {
	background-size: cover;
	background-position: center;
}

.forfront-service-four {
	background-color: #f4f4f4;
}

.service-one .service-block_one-image img,
.service-four .service-block_three-image img {
	-webkit-mask-image: none;
	mask-image: none;
	border-radius: 24px;
	object-fit: cover;
	width: 100%;
	min-height: 280px;
}

.service-four .service-block_three-inner {
	-webkit-mask-image: none;
	mask-image: none;
}

/* index-3.html — homepage layout 02 (slider-two) */
.forfront-slider-two .swiper-slide {
	background-color: #1a1a1a;
}

.forfront-slider-two .side-image img {
	max-width: min(52vw, 720px);
	max-height: 520px;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 12px;
}

.about-two .about-two_image img,
.about-two .about-two_image-two img {
	-webkit-mask-image: none;
	mask-image: none;
	border-radius: 20px;
	object-fit: cover;
	width: 100%;
}

.fullwidth-one .image img {
	object-fit: cover;
	min-height: 280px;
}

.forfront-services-two_content {
	background-image: url(../images/background/1.jpg) !important;
	background-size: cover;
	background-position: center;
}

.project-block_three-image img {
	object-fit: cover;
	min-height: 360px;
}


/* Custom CSS for Service Detail Section */
.enhanced-service-section {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.service-header .title-divider {
    height: 4px;
    width: 60px;
    background-color: #1a9e52; /* You can match this to your logo's green */
    margin-top: 15px;
    border-radius: 2px;
}

.service-header .lead {
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Feature Cards Grid */
.feature-card {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #1a9e52;
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

/* Customer Support Highlight Box */
.support-box {
    background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
    color: #ffffff;
    border-left: 5px solid #1a9e52;
}

.support-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.support-title .text-primary {
    color: #1a9e52 !important; /* Green accent */
}

.support-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.support-list li:last-child {
    margin-bottom: 0;
}

.support-list .check-icon {
    background: rgba(26, 158, 82, 0.2);
    color: #1a9e52;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

