/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.4
Tested up to: 6.8
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/*
 * Custom Styles for Homepage Mockup
 * All colors defined in :root variables.
 * Only custom CSS is used here, Bootstrap is only for grid.
 */

:root {
	/* Primary Colors */
	--color-primary-dark: #212529;
	--color-text-body: #495057;
	--color-accent: #FF6B35;
	--color-secondary-underline: #FF3547;
	--color-light: #FFFFFF;
	--color-card-bg: #FFFFFF;
	--color-page-bg: #fdfdfd;
	--color-subtle-bg: #F8F9FA;
	--color-label: #868e96;
	--color-subtle-text: #6c757d;
	--color-border-light: #e9ecef;
	--color-overlay-dark: rgba(0, 0, 0, 0.5);
	--color-divider: #e9ecef;
	--color-testimonial-bg: #1A1A1A;
	--color-feature-dark-bg: #1e1e1e;
	--color-feature-tag-bg: #343a40;
	--color-tracking-dark: #1A1A1A;
	--color-tracking-yellow: #FFC107;
	--color-footer-bg: #111111;
	--color-footer-text: #adb5bd;
	--color-footer-link: #f8f9fa;


	/* Typography */
	--font-heading: "Lora", Arial, Helvetica, sans-serif;
	--font-body: 'Inter', sans-serif;

	/* Spacing/Sizing (Modular Scale) */
	--spacing-xl: 6rem;
	--spacing-lg: 4rem;
	--spacing-md: 2rem;
	--spacing-sm: 1rem;
}

body {
	font-family: var(--font-body);
	color: var(--color-text-body);
	background-color: var(--color-page-bg);
}

.container-fluid {
	width: 95%;
}

section {
	padding: 50px 0;
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	color: var(--color-primary-dark);
}

a {
	text-decoration: none;
}

.section-headline {
	font-size: 2.5rem;
	line-height: 1.2;
	/* font-weight: 700; */
	margin-bottom: var(--spacing-lg);
}

/* Custom Underline Effect (Applies to the 'printing!' span in S1) */
.underline-wrapper {
	position: relative;
	display: inline-block;
}

.underline-wrapper::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: -5px;
	right: -10px;
	height: 4px;
	background-color: var(--color-accent);
	z-index: -1;
}

/* Custom Underline Effect (Applies to the headlines in S2, S3, S5) */
.underline-wrapper-red {
	position: relative;
	display: inline-block;
}

.underline-wrapper-red::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: -5px;
	right: -10px;
	height: 4px;
	background-color: var(--color-accent);
	z-index: -1;
}

.sub-header {
	background-color: #000;
	padding: 5px 0;
}

.social-icons-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	list-style: none;
	padding: 0;
	margin: 0;
}

.social-icons-header li {
	font-size: 18px;
	border-right: 1px solid #ddd;
	padding-right: 20px;
}

.sub-header a {
	color: #fff;
}

/* header{
    padding: 10px 0;
} */
.header-logo {
	height: 85px;
	padding: 5px 0;
}

.header-btn-box {
	width: 100%;
	background: linear-gradient(139deg, #082772 39%, rgba(8, 40, 115, 1) 100%);
	text-align: center;
	height: 85px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s !important;
}
.header-btn-box:hover{
	background: var(--color-accent);
}
.header-btn {
	color: #fff;
}


.banner-section {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.banner-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.banner-content {
	position: relative;
	z-index: 2;
	color: #fff;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	max-width: 1000px;
	margin: auto;
}

.banner-content h1 {
	color: #fff;
	font-size: 50px;
	margin-bottom: 20px;
	text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);

}

.banner-content p {
	font-size: 20px;
	margin-bottom: 30px;
}

.banner-btn {
	background: linear-gradient(139deg, rgba(32, 197, 254, 0.75) 39%, rgba(8, 40, 115, 1) 100%);
	color: #fff;
	padding: 10px 20px;
	border-radius: 50px;
}

.banner-overlay {
	width: 100%;
	background-color: rgb(0 0 0 / 60%);
}

/* --- Section 1: Service Introduction Styles --- */

.short-heading {
	color: #082772;
	font-size: 1rem;
}


.intro-headline {
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: var(--spacing-md);
	color: var(--color-primary-dark);
}

.intro-body-text {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 30px;
	max-width: 90%;
}

.trust-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--color-accent);
}

.trust-text {
	font-size: 0.9rem;
	color: var(--color-text-body);
}

/* Right Column - Service Cards (S1) */
.service-card {
	background-color: var(--color-card-bg);
	border-radius: 0.5rem;
	margin-bottom: 20px;
	border: 1px solid var(--color-border-light);
	box-shadow: 0 4px 15px rgb(0 0 0 / 13%);
	padding: 10px;
}

.service-item {
	display: flex;
	gap: var(--spacing-md);
	align-items: flex-start;
}

.service-icon-container {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border: 2px solid #082772;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(255, 107, 53, 0.05);
	margin-top: 5px;
}

.service-icon-container i {
	color: #082772;
	font-size: 25px;
}

.service-icon {
	width: 30px;
	height: 30px;
	color: var(--color-accent);
	stroke-width: 1.5;
}

.service-details h5 {
	font-family: var(--font-body);
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.service-details p {
	font-size: 0.95rem;
	line-height: 1.4;
	color: var(--color-subtle-text);
}


/* --- Section 2: Image Showcase Grid Styles --- */



/* .showcase-container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
} */

.showcase-card {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border-radius: 0;
	display: block;
	cursor: pointer;
}

.showcase-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease-in-out;
}

.showcase-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: var(--spacing-md);
	color: var(--color-light);
}

.showcase-category {
	font-size: 0.9rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0.25rem;
}

.showcase-title {
	font-family: var(--font-body);
	font-size: 1.8rem;
	line-height: 1.2;
	margin-bottom: var(--spacing-sm);
	color: #fff;
}

.showcase-footer-text {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text-body);
}



/* Services Section */
.services {
	background-color: var(--color-footer-bg);
	color: white;

}

.services .small-heading {
	color: var(--color-accent);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 1px;
}

.services .main-heading {
	font-weight: 800;
	line-height: 1.2;
	color: white;
}

.services .service-card-dark i,
h3,
p {
	position: relative;
}

.services .service-card-dark {
	background-color: #333C3A;
	padding: 40px;
	border-radius: 12px;
	height: 100%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: all 0.3s;
}

.services .service-card-dark.gradient {
	background: var(--color-accent);
}

.service-card-dark.gradient::after {
	filter: grayscale(100%) brightness(100);
}

.services .service-icon-dark {
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin-bottom: 25px;
	border-radius: 50%;
	padding: 10px;
	display: flex;
	background-color: #222b29;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	transition: all 0.3s;
}

.services .service-card-dark.gradient .service-icon-dark {
	background-color: white;
	color: #082772;
}

.service-title-dark {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: white;
}

.service-description-dark {
	color: #fff;
	font-size: 0.9rem;
	line-height: 1.6;
}

.service-card-dark::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0px;
	right: 0;
	background-color: var(--color-accent);
	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
	transform-origin: top right;
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
	visibility: visible;
}

.service-card-dark:hover::before {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	transform-origin: bottom center;
}

.service-card-dark:hover::after {
	filter: grayscale(100%) brightness(300%);
}

.service-card-dark::after {
	position: absolute;
	bottom: 6px;
	right: 6px;
	content: "";
	background-image: url(images/arrow-shape.png);
	filter: grayscale(100%) brightness(0);
	background-repeat: no-repeat;
	background-size: cover;
	width: 21px;
	height: 18px;
	transition: all 0.4s ease-in-out;
}

.services .service-card-dark:hover .service-icon-dark {
	background-color: white;
	color: #082772;
}



/* --- Section 3: Blog/News Timeline Styles --- */
/* Custom Underline Style */
.underline-wrapper-red {
	position: relative;
	display: inline-block;
}

/* .underline-wrapper-red::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--bs-primary);
            border-radius: 9999px;
        } */

/* Tilted Image Styling */
.tilted-image-container {
	transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
	transform: rotate(-3deg);
	/* box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25); */
	border-radius: 0.75rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

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

.number {
	background-color: #082772;
	color: #fff;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

/* Article Hover State (Custom) */
.blog-item {
	transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
	cursor: pointer;
	border-bottom: 1px solid #e5e7eb;
}

.blog-item:hover {
	background-color: #f8f9fa;
	/* light gray on hover */
	transform: translateX(5px);
	/* box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05); */
}

.blog-item-last {
	border-bottom: none !important;
}

.blog-date {
	color: var(--bs-gray-600);
	font-weight: 600;
}

.blog-title-accent {
	color: var(--color-accent) !important;
	font-weight: 700;
}

.accent-number {
	background-color: var(--color-accent) !important;
}

.blog-title {
	color: #082772;
}

.blog-item:hover .blog-title {
	color: var(--color-accent);
}

.blog-item:hover .number {
	background-color: var(--color-accent);
}

/* Tilted Image Styling */
.tilted-image-container {
	position: relative;
	margin-left: 50px;
}

.tilted-image {
	width: 100%;
	height: auto;
	max-width: 400px;
	/* transform: rotate(10deg); */
	display: block;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* --- Section 4: CTA / Features Split Block Styles --- */


/* Left side: Image with Text Overlay */
.cta-image-block {
	position: relative;
	height: 550px;
	overflow: hidden;
	border-radius: 0.5rem 0 0 0.5rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cta-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cta-overlay-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: var(--spacing-lg);
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
	color: var(--color-light);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.cta-discount-percent {
	position: absolute;
	top: var(--spacing-lg);
	left: var(--spacing-lg);
	font-family: var(--font-heading);
	font-size: 8rem;
	font-weight: 700;
	line-height: 1;
	color: var(--color-light);
	opacity: 0.9;
}

.cta-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0;
	z-index: 10;
	color: #fff;
}


/* Right side: Features Block */
.cta-features-block {
	background-color: var(--color-subtle-bg);
	padding: 0 50px;
	border-radius: 0 0.5rem 0.5rem 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cta-label {
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-label);
	margin-bottom: var(--spacing-sm);
}

.cta-headline {
	font-family: var(--font-heading);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--spacing-md);
}

.cta-body {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text-body);
	margin-bottom: 20px;
}

.feature-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.feature-item {
	display: flex;
	align-items: center;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-primary-dark);
	margin-bottom: 1.2rem;
	text-transform: uppercase;
}

.feature-icon-container {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	margin-right: 1rem;
	color: var(--color-accent);
}

.feature-icon-container svg {
	width: 100%;
	height: 100%;
	stroke-width: 1.5;
}


/* --- Section 5: Awards and Testimonial Styles --- */


section.section-awards-testimonial {
	position: relative;
}

.awards-row {
	position: absolute;
	z-index: 555;
	width: 100%;
}

/* Awards Row (Top Half) */
.awards-headline {
	font-size: 2.5rem;
	margin-bottom: var(--spacing-lg);
	text-align: left;
}

.award-card {
	background-color: var(--color-card-bg);
	border-radius: 0.5rem;
	padding: var(--spacing-md);
	text-align: center;
	height: 200px;
	border: 1px solid #71717173;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	display: flex;
	align-items: center;
	justify-content: center;
}

.award-date {
	font-size: 0.85rem;
	color: var(--color-subtle-text);
	display: block;
	margin-bottom: var(--spacing-sm);
}

.award-badge-container {
	position: relative;
	display: inline-block;
	margin-bottom: var(--spacing-sm);
	/* Placeholder for the wreath/laurel styling */
	width: 100px;
	height: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.award-badge {
	color: #daa520;
	/* Gold color */
	width: 100%;
	height: 100%;
	opacity: 0.15;
	/* Make it subtle background */
}

.award-ribbon {
	position: absolute;
	bottom: 5px;
	width: 100px;
	height: auto;
	object-fit: contain;
}

.award-ribbon.nominee {
	/* Different styling for the 'Nominee' black badge */
	filter: grayscale(100%) brightness(0.5);
	/* Make the gold placeholder look black/dark gray */
}

.award-title {
	font-family: var(--font-body);
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0;
}




/* Testimonial Block (Bottom Half with Background Image) */
.testimonial-block {
	background-color: var(--color-testimonial-bg);
	background-image: url(images/test-bg.avif);
	margin-top: var(--spacing-xl);
	padding: 0 !important;
	position: relative;
	overflow: hidden;
	color: var(--color-light);
	background-attachment: fixed;
}

.testimonial-overlay {
	width: 100%;
	padding: 100px 0;
	background-color: #00000091;
}

/* .testimonial-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%; 
    height: 100%;
    background-image: url('https://placehold.co/1200x800/2c3e50/ffffff?text=Printing+Desk');
    background-size: cover;
    background-position: right center;
    opacity: 0.7;
    z-index: 1;
} */

/* .testimonial-block::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 2;
} */

.testimonial-content {
	position: relative;
	z-index: 3;
	/* Ensure content is above the background image */
}

.quote-icon {
	font-family: var(--font-heading);
	font-size: 6rem;
	line-height: 1;
	color: var(--color-accent);
	opacity: 0.8;
	/* margin-bottom: 1rem; */
	display: block;
	margin-top: 30px;
}

.testimonial-quote {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--spacing-md);
	color: var(--color-light);
}

.testimonial-text {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: var(--spacing-sm);
	max-width: 90%;
}

.testimonial-attribution {
	display: flex;
	flex-direction: column;
	margin-top: var(--spacing-md);
	font-family: var(--font-body);
}

.testimonial-role {
	font-size: 0.9rem;
	color: var(--color-accent);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.testimonial-name {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-light);
}



/* --- Section 7: Quote and Tracking CTA Styles --- */

.section-quote-cta {
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0 !important;
}

.contact-overlay {
	padding: 80px 0;
	background-color: #00000057;
}

.quote-cta-container {
	max-width: 1200px;
	margin: 0 auto;
	border-radius: 0.5rem;
	overflow: hidden;
}

/* Left side: Form Card */
.quote-form-card {
	background-color: var(--color-card-bg);
	padding: var(--spacing-lg);
	height: 100%;
	border-radius: 25px;
}

.quote-title {
	font-family: var(--font-body);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: var(--spacing-md);
	color: var(--color-primary-dark);
}

.quote-form-card .form-control,
.quote-form-card .form-select {
	height: 50px;
	border-radius: 0.5rem;
	border: 1px solid #00000021;
	font-size: 1rem;
	padding: 0.5rem 1rem;
	/* Custom shadow to match the image */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.quote-form-card .form-control:focus,
.quote-form-card .form-select:focus {
	border-color: var(--color-accent);
	box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.form-checkbox-group {
	margin-top: var(--spacing-md);
	padding-left: 0.5rem;
}

.form-check-label {
	font-size: 0.95rem;
	color: var(--color-text-body);
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
	background-color: var(--color-accent);
	color: #fff;
	font-weight: 600;
	font-size: 1.05rem;
	border: none;
	padding: 0.75rem 2rem;
	border-radius: 0.5rem;
	transition: background-color 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.btn-quote-request:hover {
	background-color: #e65c2b;
	/* Slightly darker orange */
	color: var(--color-primary-dark);
}

.btn-quote-request svg {
	width: 20px;
	height: 20px;
	stroke-width: 3;
	color: var(--color-primary-dark);
}

/* Right side: Tracking and Contact Block */
.tracking-cta-block {
	/* background-color: var(--color-tracking-dark); */
	height: 100%;

	position: relative;
	overflow: hidden;
	color: var(--color-light);
}



.tracking-content {
	position: relative;
	padding: 50px;
	padding-bottom: 5rem;
	/* Space for the contact box */
	z-index: 2;
	height: calc(100% - 150px);
	/* Fill most of the space above contact box */
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.tracking-label {
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: var(--spacing-sm);
}

.tracking-headline {
	font-family: var(--font-body);
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-light);
	margin-bottom: var(--spacing-md);
}

.tracking-body {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0;
}

/* Contact Box */
.contact-box {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--color-accent);
	padding: 50px;
	z-index: 3;
	border-radius: 25px;
}

.contact-box-left {
	color: var(--color-primary-dark);
}

.contact-question {
	font-family: var(--font-body);
	font-size: 2rem;
	margin-bottom: 0.25rem;
}

.contact-label {
	font-size: 1rem;
	color: rgba(0, 0, 0, 0.7);
	margin-bottom: 0;
}

.contact-number {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color-primary-dark);
	text-decoration: none;
	white-space: nowrap;
}

.contact-number:hover {
	color: var(--color-primary-dark);
	text-decoration: underline;
}


/* --- Footer Styles --- */
.main-footer {
	background-color: var(--color-footer-bg);
	/* padding: var(--spacing-xl) 0 0; */
	color: var(--color-footer-text);
}


/* Top CTA Row */
.footer-cta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 50px 0;
}

.footer-cta-headline {
	font-family: var(--font-body);
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1.1;
	color: var(--color-light);
	margin-bottom: 0;
}

.accent-text {
	color: var(--color-accent);
}

.btn-contact-us {
	background-color: var(--color-accent);
	color: var(--color-primary-dark);
	font-weight: 600;
	font-size: 1rem;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-transform: uppercase;
}

.btn-contact-us:hover {
	background-color: #ffd64e;
	/* Lighter yellow */
	color: var(--color-primary-dark);
}

.btn-contact-us svg {
	width: 20px;
	height: 20px;
	stroke-width: 3;
}

.footer-divider {
	border-color: rgba(255, 255, 255, 0.1);
	margin: 0;
}

/* Bottom Navigation Row */
.footer-nav-row {
	padding: 50px 0;
}





.footer-logo {
	font-family: var(--font-body);
	font-size: 1.8rem;
	font-weight: 900;
	color: var(--color-light);
	margin-bottom: var(--spacing-sm);
	height: 130px;
}

.footer-logo img {
	height: 125px;
}

.social-icons {
	display: flex;
	gap: 1.25rem;
	margin-bottom: var(--spacing-md);
}

.social-icons a {
	color: var(--color-footer-text);
	font-size: 1.1rem;
	transition: color 0.3s ease;
}

.social-icons a:hover {
	color: var(--color-accent);
}

.since-text {
	font-family: var(--font-body);
	font-size: 3rem;
	font-weight: 900;
	line-height: 1;
	color: var(--color-light);
	margin-top: var(--spacing-md);
}

.footer-heading {
	font-family: var(--font-body);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-light);
	margin-bottom: var(--spacing-sm);
}

.footer-links {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: var(--color-footer-text);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--color-accent);
}

/* Copyright Row */
.footer-copyright-row {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: var(--spacing-sm) 0;
	font-size: 0.85rem;
	text-align: center;
}

.copyright-text {
	margin-bottom: 0;
	color: var(--color-footer-text);
}

.policy-links a {
	color: var(--color-footer-text);
	text-decoration: none;
	margin-left: 0.5rem;
	transition: color 0.3s ease;
}

.policy-links a:hover {
	color: var(--color-tracking-yellow);
}


/* Responsive Adjustments (General) */
@media (max-width: 991.98px) {

	/* Section 7 Adjustments */
	.quote-cta-container {
		box-shadow: none;
		/* Remove shadow on full screen mobile */
		border-radius: 0;
	}

	.tracking-cta-block {
		min-height: 400px;
	}

	.tracking-content {
		height: auto;
		padding: 0 20px;
	}

	.tracking-headline {
		font-size: 1.8rem;
		font-weight: 600;
	}

	.contact-box {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
		padding: var(--spacing-md);
		position: unset;
		margin: 20px 0;
	}

	.contact-question {
		font-family: var(--font-body);
		font-size: 1.5rem;
		margin-bottom: 0.25rem;
	}

	.contact-box-right {
		margin-top: 0.5rem;
	}

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

	/* Section 4 Adjustments */
	.cta-image-block {
		height: 350px;
		border-radius: 0.5rem 0.5rem 0 0;
	}

	.cta-features-block {
		height: auto;
		padding: 40px 0 0;
		border-radius: 0 0 0.5rem 0.5rem;
	}

	/* Footer Adjustments */
	.footer-cta-row {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--spacing-md);
		text-align: left;
	}

	.btn-contact-us {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.footer-cta-headline {
		font-size: 1.8rem;
		font-weight: 500;
	}

	.footer-col-info {
		margin-bottom: 25px;
	}

	.footer-col {
		margin-bottom: 30px;
	}

	.footer-copyright-row {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding-top: var(--spacing-md);
		padding-bottom: var(--spacing-md);
	}

	.copyright-text {
		margin-bottom: 0.5rem;
	}

	.policy-links a {
		margin: 0 0.5rem;
	}
}

@media (max-width: 575.98px) {

	.intro-headline,
	.section-headline {
		font-size: 1.8rem;
	}

	.contact-box-left {
		width: 100%;
	}

	.contact-number {
		font-size: 1.3rem;
	}
}

@media (max-width: 992.98px) {
	.sub-header {
		display: none;
	}

	.banner-content h1 {
		font-size: 28px;
	}

	.banner-section {
		height: 50vh;
		padding: 0 20px;
	}

	.banner-content p {
		font-size: 18px;
		margin-bottom: 25px;
	}

	section {
		padding: 40px 0;
		overflow: hidden;
	}

	.container-fluid {
		width: 97%;
	}

	.intro-body-text {
		font-size: 1rem;
		line-height: 1.6;
		margin-bottom: 30px;
		max-width: 100%;
	}

	.showcase-card {
		margin-top: 15px;
	}

	.services .main-heading {
		font-weight: 600;
	}

	section.section-awards-testimonial {
		padding-top: 150px;
	}

	.awards-row {
		top: -110px;
	}

	.awards-headline {
		font-size: 1.8rem;
		margin-bottom: 40px;
		text-align: center;
	}

	.testimonial-quote {
		font-size: 1.8rem;
		font-weight: 600;

	}

	.testimonial-overlay {
		padding: 80px 0;
	}

	.cta-discount-percent {
		font-size: 3rem;
		top: 54px;
		left: 30px;
	}

	.cta-overlay-content {
		padding: 30px;
	}

	.cta-title {
		font-size: 1.8rem;
		font-weight: 600;
	}

	.cta-headline {
		font-size: 1.8rem;
		font-weight: 600;
		margin-bottom: 15px;
	}

	.contact-overlay {
		padding: 60px 0;
	}

	.quote-form-card {
		padding: 50px 20px;
	}

	.since-text {
		font-size: 2rem;
	}

	.footer-nav-row {
		padding: 50px 0 20px;
	}


}



/* Breadcrumb css */
.page-breadcrumb {
	background: linear-gradient(135deg, #0a2974 0%, #21c6fe 100%);
	padding: 40px 0;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.page-breadcrumb::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.page-breadcrumb::after {
	content: "";
	position: absolute;
	bottom: -80px;
	left: -80px;
	width: 250px;
	height: 250px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}


.page-breadcrumb span.breadcrumb_new a {
	color: var(--white-color);
}

.page-breadcrumb span.breadcrumb_new {
	color: var(--white-color);
}

.page-breadcrumb .extraa {
	margin: 54px 0;
}

.page-breadcrumb .pagetitle {
	color: #fff;
}

.page-breadcrumb .container-fluid {
	position: relative;
	z-index: 999;
}


#sequence a {
	width: 33.3333%;
	float: left;
	text-align: center;
	padding: 5px 0;
	font-size: 15px;
	color: #fff !important;
	font-weight: 600;
	text-decoration: none !important;

}

#sequence a:not(:last-child) {
	border-right: 1px solid #fffdfd;
}

#sequence {
	width: 100%;
	float: left;
	background: #082772;
	position: fixed;
	bottom: 0px;
	z-index: 100;
	padding: 0;
	color: #fff !important;
	margin: 0 !important;
}

/* inner pages */
/* ====== Inner Pages Common Styles ====== */
.page-section {
	margin-bottom: 5rem;
}

.page-section h2,
.page-section h3 {
	font-weight: 700;
	color: #082772;
	/* new main heading color */
	margin-bottom: 1.2rem;
	position: relative;
}

.page-section h2::after,
.page-section h3::after {
	content: "";
	display: block;
	width: 80px;
	height: 3px;
	background-color: var(--color-accent);
	margin-top: 10px;
	border-radius: 2px;
}

.page-section p {
	color: var(--color-text-body);
	line-height: 1.9;
	font-size: 1.05rem;
	margin-bottom: 1rem;
}

/* Subtle background section */
.page-section.bg-subtle {
	background: linear-gradient(135deg, #e1f1ff, #00608321);
	padding: 3rem 2rem;
	border-radius: 14px;
	border: 1px solid var(--color-border-light);
}

/* Card style for last section */
.page-card {
	background: #fff4d1;
	border: 1px solid var(--color-border-light);
	border-radius: 14px;
	padding: 2rem;
	transition: all 0.3s ease;
	height: 100%;
}

.page-card:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transform: translateY(-6px);
}

.page-img {
	border-radius: 14px;
	width: 100%;
	height: auto;
	margin-bottom: 1.5rem;
	object-fit: cover;
}

/* Custom Styles */
.text-custom-heading {
	color: #082772 !important;
}

.infrastructure-card {
	background-color: var(--color-card-bg);
	border: none;
	border-radius: 1rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

/* New Gradient Header Background */
.hero-header-bg {
	background: linear-gradient(180deg, var(--color-page-bg) 0%, var(--color-subtle-bg) 100%);
}

.list-header {
	background-color: var(--color-primary-dark);
	color: var(--color-light);
	padding: 1rem 1rem;
	/* font-weight: 700; */
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
}

.list-header.accent-bg {
	background-color: #d15a2e;
	color: var(--color-light);
}

.machine-list-item {
	padding: 1.1rem 2rem;
	border-bottom: 1px solid var(--color-border-light);
	/* Lighter border for clean look */
	color: var(--color-primary-dark);
	font-weight: 500;
	/* Slightly lighter weight for a modern feel */
	transition: all 0.3s ease;
	background-color: var(--color-card-bg);
	/* Uniform background */
}

/* Remove alternating colors, use a subtle hover highlight instead */
.machine-list-item:hover {
	background-color: #f3f3f3;
	/* Very slight highlight */
	transform: none;
	/* Removed slide for a cleaner feel */
}

.machine-list-item:last-child {
	border-bottom: none;
}

/* Refined icon box style */
.feature-icon-box-small {
	color: var(--color-light);
	background-color: #082772;
	/* Using the main heading color for authority */
	border: 2px solid #082772;
	width: 55px;
	/* Slightly larger */
	height: 55px;
	line-height: 51px;
	border-radius: 50%;
	font-size: 1.8rem;
	font-weight: 900;
	text-align: center;
	box-shadow: 0 5px 15px rgba(8, 39, 114, 0.2);
	/* Shadow matching the color */
}

.heading-accent-line {
	width: 60px;
	/* Reduced width for elegance */
	height: 3px;
	/* Thinner for subtlety */
	background-color: var(--color-accent);
	/* Using the main accent color */
	margin: 0.75rem auto 30px;
	border-radius: 3px;
}

.feature-card-title {
	color: #082772;
	font-weight: 800;
	/* Bolder title */
	margin-bottom: 0.3rem;
}

.infrastructure-card-content {
	text-align: left !important;
}

.metal-head::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--color-accent);
    margin-top: 10px;
    border-radius: 2px;
    margin: 10px auto !important;
}