:root {
	--primary-orange: #fca311;
	--dark-text: #222222;
	--topbar-grey: #f5f5f5;
	--header-height: 100px;
}
body {
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	padding: 0;
}
/* --- 1. Top Bar --- */
.top-bar {
	background-color: var(--topbar-grey);
    font-size: 13px;
    color: #666;
    height: auto;
    display: table !important;
    align-items: center;
    border-bottom: 0;
    width: 100%;
	padding: 10px 0;
}
.top-bar .topber_left i{
	color: #FA9A00;
}
.top-bar i {
	color: #888;
	margin-right: 6px;
}
.social-icons a {
	color: #888;
	margin-left: 15px;
	font-size: 14px;
	transition: 0.3s;
}
.social-icons a:hover {
	color: var(--primary-orange);
}
/* --- 2. Main Header --- */

.site-branding:before{
        content: "";
        position: absolute;
        width: 500px;
        height: 35px;
        background: #fff;
        bottom: 100%;
        left: -275px;
        webkit-transform: skew(50deg, 0deg);
        transform: skew(50deg, 0deg);
    }
	    .site-branding:after {
        content: "";
        position: absolute;
        width: 500px;
        height: 35px;
        background: #fff;
        top: 100%;
        left: -275px;
        webkit-transform: skew(-50deg, 0deg);
        transform: skew(-50deg, 0deg);
    }
.site-header {
    background-color: #fff;
    position: relative;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: auto;
	padding: 20px 0; 
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* --- The Angled Shape (Bottom Left) --- */
.header-shape-extension {
    position: absolute;
    bottom: -29px;
    left: 0;
    width: 28%;
    height: 50px;
    background-color: #fff;
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

/* Logo */
.brand-logo {
    text-decoration: none;
    color: #333;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: flex-start;
}

.plus-box {
    background-color: #ff9900;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    margin-left: 3px;
    margin-top: 5px;
}

/* --- Navigation --- */
.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center; /* Centered nav */
    height: 100%;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    height: 100%;
    align-items: center;
	margin: 0;
}

.nav-list > li {
    position: relative; /* For dropdown positioning */
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-list > li > a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    padding: 0 5px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%; /* Full height for hover target */
    border-bottom: 2px solid transparent; /* Prepare for hover underline */
	padding-bottom: 15px;
}

/* Icons */
.nav-list > li > a i { font-size: 12px; color: #999; margin-top: 2px;}

/* Hover States & Active */
.nav-list > li.active > a,
.nav-list > li:hover > a {
    color: #ff9900;
    border-bottom-color: #ff9900;
}

/* --- Dropdown Menus --- */
.dropdown {
    position: absolute;
    top: 100%; /* Bottom of header */
    left: 0;
    width: 200px;
    background: #fff;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 50;
    border-top: 3px solid #ff9900; /* Orange top border on dropdown */
}

.nav-list > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    transition: 0.2s;
}

.dropdown li a:hover {
    background-color: #f9f9f9;
    color: #ff9900;
    padding-left: 25px; /* Slide effect */
}

/* --- Header Actions (Cart & Search) --- */
.header-actions {
    display: flex;
    height: 100%;
    align-items: center;
}

.action-btn {
    width: 100%;
    height: 100%; /* Full header height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
	padding: 10px 20px;
	border-radius: 50px;
}

/* Cart */
.cart-btn {
    background-color: #ff9900;
    color: #fff;
}
.cart-btn:hover { background-color: #e68a00; }

.cart-count {
    position: absolute;
    top: 5px;
    right: 7px;
    background: #fff;
    color: #ff9900;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Search */
.search-btn {
    background-color: #f4f4f4;
    color: #333;
}
.search-btn:hover { background-color: #e0e0e0; }

/* --- Search Overlay --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-form {
    width: 100%;
    max-width: 800px;
    position: relative;
    border-bottom: 2px solid #555;
}

.search-form input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    padding: 20px;
    outline: none;
}

.close-search {
    position: absolute;
    right: 0;
    top: 20px;
    background: none;
    border: none;
    color: #ff9900;
    font-size: 30px;
    cursor: pointer;
}

/* --- Mobile Menu Toggle --- */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 10px;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    /* Hide Shape on Mobile */
    .header-shape-extension { display: none; }
    
    .header-container {
        padding: 0 20px;
    }

    .mobile-toggle {
        display: block;
        order: 3; /* Right side */
    }

    .header-actions {
        display: none; /* Hide default actions on mobile to save space, or move them */
    }

    /* Mobile Nav Drawer */
    .main-nav {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        height: auto;
        display: none; /* Hidden by default */
        border-top: 1px solid #eee;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .main-nav.nav-open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        height: auto;
        padding: 20px 0;
    }

    .nav-list > li {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-list > li > a {
        padding: 15px 20px;
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
        justify-content: space-between;
    }
    
    /* Mobile Dropdown Behavior */
    .dropdown {
        position: static; /* Relative flow */
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none; /* Hidden until clicked */
        background-color: #f9f9f9;
        border-top: none;
    }

    /* Show dropdown on hover/click logic (simplified for CSS hover) */
    .nav-list > li:hover .dropdown {
        display: block;
    }
}

/* Hero Placeholder */
.hero-placeholder {
    height: 400px;
    background: #333 url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.hero-placeholder h1 { font-size: 48px; text-transform: uppercase; font-weight: 700; }
/* --- Hero Slider Styles --- */

.hero-slider {
	background-image: url(../image/breadcumb.jpg);
	height: 700px;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
}
.hero-slider::before {
	background-color: #111111c9; /* Dark theme background */
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.carousel, .carousel-inner, .carousel-item {
	height: 100%;
}
.hero-content {
	z-index: 5;
	padding-top: 100px; /* Account for the overlapping header */
}
/* Typography */
.hero-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 82px;
	line-height: 1.1;
	margin-bottom: 25px;
}
.text-orange {
	color: var(--primary-orange);
}
.text-white {
	color: #ffffff;
}
.hero-subtitle {
	color: #999;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 40px;
}
.btn-hero {
	background-color: var(--primary-orange);
	color: #fff;
	padding: 18px 40px;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 13px;
	display: inline-block;
	transition: 0.3s;
}
/* Fixed Person PNG Positioning */
.hero-person-img {
	position: absolute;
	bottom: 0; /* Anchors feet to the bottom */
	right: 0;
	height: 100%; /* Makes image pop out of the frame slightly */
	width: auto;
	object-fit: contain;
	z-index: 1;
}
/* Custom Slide Transitions */
.carousel-fade .carousel-item {
	opacity: 0;
	transition-duration: 0.8s;
	transition-property: opacity;
}
.carousel-fade .carousel-item.active {
	opacity: 1;
}
/* Mobile Responsive */
@media (max-width: 991px) {
	.hero-slider {
		height: 500px;
		margin-top: 0;
	}
	.hero-title {
		font-size: 45px;
	}
	.hero-content {
		text-align: center;
		padding-top: 40px;
	}
}
/* --- Services Section General --- */
.services-section {
	padding: 80px 0;
	background-color: #fff;
}
/* Header & Navigation */
.section-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: #333;
	margin-bottom: 0;
	white-space: nowrap;
	padding-right: 20px;
}
.line-spacer {
	height: 1px;
	background: #e5e5e5;
	flex-grow: 1;
	margin-bottom: 15px; /* Aligns with text baseline */
	margin-right: 20px;
}
.nav-btn {
	width: 36px;
	height: 36px;
	border: none;
	background-color: #f4f4f4;
	color: #888;
	font-size: 11px;
	transition: all 0.3s;
}
.nav-btn:hover {
	background-color: var(--primary-orange);
	color: #fff;
}
/* --- Service Card Design --- */
.service-card {
	margin-bottom: 30px;
	background: #fff;
	border-radius: 10px;
}

.service-card:hover {
	
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
/* Image Area with Hover Overlay */
.img-box {
	position: relative;
	overflow: hidden;
	height: 220px;
}
.img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.hover-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(34, 34, 34, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.overlay-btn {
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 10px 22px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-decoration: none;
	transition: 0.3s;
}
.overlay-btn:hover {
	background: #fff;
	color: #222;
}
/* Hover Effects */
.service-card:hover .img-box img {
	transform: scale(1.1);
}
.service-card:hover .hover-overlay {
	opacity: 1;
}
/* Text Content */
.text-box {
	padding: 20px;
	padding-top: 25px;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	transition: box-shadow .3s;
}
.text-box h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
}
.text-box p {
	font-size: 14px;
	color: #888;
	line-height: 1.7;
	margin-bottom: 15px;
}
/* Exact "Read More" Link Style */
.link-read-more {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: var(--primary-orange);
	text-decoration: none;
	border-bottom: 2px solid var(--primary-orange);
	padding-bottom: 2px;
	transition: 0.3s;
}
.link-read-more:hover {
	color: #333;
	border-bottom-color: #333;
}
/* --- Quote Form --- */
.quote-wrapper {
	background-color: #f7f7f7;
	padding: 40px;
	position: relative; /* For watermark positioning */
	overflow: hidden;
}
.quote-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
}
.quote-divider {
	width: 40px;
	height: 2px;
	background: #e5e5e5;
	margin-bottom: 20px;
}
.quote-desc {
	font-size: 14px;
	color: #888;
	margin-bottom: 30px;
}
.custom-input {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 0;
	padding: 12px 15px;
	font-size: 13px;
	margin-bottom: 20px;
	color: #666;
}
.custom-input:focus {
	box-shadow: none;
	border-color: var(--primary-orange);
}
.btn-orange {
	background-color: var(--primary-orange);
	color: #fff;
	border: none;
	border-radius: 0;
	padding: 14px 25px;
	font-weight: 700;
	font-size: 13px;
	transition: 0.3s;
}
.btn-orange:hover {
	background-color: #333;
	color: #fff;
}
/* Watermark Icon */
.watermark-icon {
	position: absolute;
	bottom: -15px;
	right: 0px;
	color: rgba(0, 0, 0, 0.03); /* Very faint grey */
	font-size: 120px;
	line-height: 1;
	pointer-events: none;
	z-index: 0;
}
/* --- CTA Overlap Section --- */
.cta-overlap-wrapper {
	position: relative;
	z-index: 20; /* Ensure it sits on top */
	margin-bottom: -100px; /* Pulls the section down into the next one */
	margin-top: 100px !important;
	background-image: url("image/call-action-home6-bg.jpg");
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}
.cta-inner {
	position: relative;
	padding: 0;
}
/* Left Building Image */
.cta-img-left {
	height: 250px;
	overflow: hidden;
	position: relative;
}
.cta-img-left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Create the diagonal cut effect if needed, or keeping it simple rectangle */
}
/* Center Worker/Architect Image */
.cta-worker-img {
	margin-top: -60px; /* Pops the head out of the box */
	position: relative;
}
.cta-worker-img img {
	height: 320px;
	width: auto;
	object-fit: contain;
}
/* Right Content */
.cta-content {
	padding: 40px 20px;
}
.cta-content h3 {
	font-family: 'Open Sans', sans-serif; /* Lighter font for "Looking for" */
	font-weight: 400;
	font-size: 22px;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.4;
}
.cta-content .fw-bold {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #222;
}
.btn-quote {
	background-color: var(--primary-orange);
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	padding: 12px 30px;
	border-radius: 0;
	text-transform: capitalize;
	transition: 0.3s;
}
.btn-quote:hover {
	background-color: #333;
	color: #fff;
}
/* --- 1. CTA Overlap Section --- */
.cta-overlap-wrapper {
	position: relative;
	z-index: 10; /* Keeps it above the dark project section */
	margin-bottom: -120px; /* This pulls the dark section UP behind this one */
}
.cta-inner {
	/* Using your uploaded background image */
	background: #f9f9f9 url('uploaded_files/call-action-home6-bg.jpg') no-repeat center center;
	background-size: cover;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	position: relative;
	/* Ensure the row has height/padding but accommodate the tall image */
	padding: 0;
}
/* The Engineer/Building Image */
.cta-image-col {
	position: relative;
	display: flex;
	align-items: flex-end; /* Align bottom */
}
.engineer-composite-img {
	/* Using your uploaded image */
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 420px; /* Force it to be tall */
	margin-bottom: -60px; /* Pushes the image down over the edge */
	margin-left: -30px; /* Adjust horizontal position to match ref */
	z-index: 20;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}
/* The CTA Text Content */
.cta-content {
	padding: 60px 40px 60px 0;
	text-align: left;
}
.cta-content h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
	color: #444;
	line-height: 1.4;
	margin-bottom: 25px;
}
.cta-content h3 strong {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	color: #222;
}
.btn-quote {
	background-color: var(--primary-orange);
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 13px;
	padding: 14px 35px;
	border-radius: 0;
	text-transform: capitalize;
	transition: 0.3s;
}
.btn-quote:hover {
	background-color: #222;
	color: #fff;
}
/* --- 1. The Overlapping CTA Section --- */
.cta-overlap-section {
	position: relative;
	z-index: 10;
	margin-top: 50px;
	background-image: url("../image/call-action-home6-bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.cta-container {
	/* Using your white background image */
	background: none;
	background-size: cover;
	box-shadow: none;
	position: relative;
}
/* The Engineer Image "Pop Out" Effect */
.engineer-col {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.engineer-img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 480px;
	margin-bottom: -60px;
	margin-left: -50px;
	filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
	z-index: 20;
	position: relative;
	top: -60px;
}
/* CTA Text */
.cta-text-col {
	padding: 60px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cta-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
	color: #444;
	line-height: 1.4;
	margin-bottom: 25px;
}
.cta-title strong {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	color: #222;
}
.btn-quote {
	background-color: var(--primary-orange);
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-transform: capitalize;
	padding: 15px 35px;
	border-radius: 0;
	display: inline-block;
	width: fit-content;
	transition: 0.3s;
	border: none;
}
.btn-quote:hover {
	background-color: #222;
	color: #fff;
}
/* --- 2. The Dark Projects Section --- */
.projects-section {
	background-color: #1a1a1a;
	/* Using your dark blueprint background */
	background-image: url("../image/home3-projects-bg.jpg");
	background-repeat: repeat;
	padding-top: 70px; /* Huge top padding to accommodate the CTA overlap */
	padding-bottom: 20px;
	color: #fff;
}
.section-header {
	text-align: center;
	margin-bottom: 50px;
}
.project-h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 32px;
	color: #fff;
	margin-bottom: 15px;
	position: relative;
	overflow: hidden;
}
.project-h2:before {
	content: '';
	position: absolute;
	top: 50%;
	width: 100%;
	height: 1px;
	right: -62%;
	background: #ffffff;
	opacity: 0.2;
}
.project-h2:after {
	content: '';
	position: absolute;
	top: 50%;
	width: 100%;
	height: 1px;
	left: -62%;
	background: #ffffff;
	opacity: 0.2;
}
.title-line {
	width: 50px;
	height: 3px;
	background: var(--primary-orange);
	margin: 0 auto;
}
/* Filters */
.filter-nav {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
.filter-btn {
	background: none;
	border: none !important;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #888;
	margin: 0 15px;
	padding-bottom: 5px;
	cursor: pointer;
	position: relative;
	transition: 0.3s;
	background-color: transparent !important;
}
.filter-btn:hover, .filter-btn.active {
	color: var(--primary-orange) !important;
}
.filter-btn.active::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: var(--primary-orange);
	bottom: 0;
	left: 0;
}
/* Portfolio Items */
.portfolio-grid {
	/* Important for Isotope */
	min-height: 600px;
}
.portfolio-item {
	margin-bottom: 30px;
	/* Default Height */
	height: 300px;
}
/* The Tall Middle Item Style */
.portfolio-item.tall {
	height: 630px;
}
.item-wrap {
	position: relative;
	overflow: hidden;
	height: 100%;
	width: 100%;
}
.item-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
/* Hover Overlay */
.hover-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(252, 163, 17, 0.9); /* Theme Orange */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s ease;
	transform: scale(0.9);
}
.item-wrap:hover .hover-content {
	opacity: 1;
	transform: scale(1);
}
.item-wrap:hover img {
	transform: scale(1.1);
}
.hover-content h4 {
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 5px;
}
.hover-content span {
	color: #fff;
	font-size: 13px;
}
/* --- Who We Are Section --- */
.who-we-are-section {
	padding: 80px 0;
	background-color: #fff;
	font-family: 'Open Sans', sans-serif;
}
/* Header Style */
.section-header-left {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.section-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: #333;
	margin: 0;
	padding-right: 20px;
	white-space: nowrap;
}
.header-line {
	flex-grow: 1;
	height: 1px;
	background-color: #e5e5e5;
}
/* --- Image Grid (2x2) --- */
.about-image-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.grid-img-item {
	width: 100%;
	/* Create square aspect ratio */
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.grid-img-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}
.grid-img-item:hover img {
	transform: scale(1.1);
}
/* --- Text Content --- */
.about-text-wrap {
	padding-left: 10px;
}
.about-heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
}
.about-desc {
	font-size: 14px;
	color: #777;
	line-height: 1.7;
	margin-bottom: 25px;
}
.btn-read-more {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: var(--primary-orange);
	text-decoration: none;
	border-bottom: 2px solid var(--primary-orange);
	padding-bottom: 2px;
	transition: 0.3s;
}
.btn-read-more:hover {
	color: #333;
	border-bottom-color: #333;
}
/* --- Right Sidebar CTA --- */
.cta-box {
	position: relative;
	height: 250px;
	overflow: hidden;
	margin-bottom: 25px;
	background-color: #333;
}
.cta-bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0.4; /* Darkens the image */
	transition: opacity 0.3s;
}
.cta-box:hover .cta-bg-img {
	opacity: 0.2; /* Darker on hover to make text pop */
}
.cta-overlay-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 30px;
}
.cta-overlay-content h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 20px;
	line-height: 1.3;
}
.cta-overlay-content h3 strong {
	font-weight: 800;
}
.btn-orange-solid {
	background-color: var(--primary-orange);
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 13px;
	padding: 12px 25px;
	text-decoration: none;
	transition: 0.3s;
	border: none;
}
.btn-orange-solid:hover {
	background-color: #fff;
	color: #333;
}
.cta-bottom-text p {
	font-size: 13px;
	color: #777;
	line-height: 1.6;
}
/* --- News & Testimonials Section --- */
.news-testimonials-section {
	padding: 80px 0;
	background-color: #fff;
	font-family: 'Open Sans', sans-serif;
}
/* Header Styling */
.section-header-split {
	display: flex;
	align-items: center;
}
.section-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #333;
	margin: 0;
	padding-right: 15px;
	white-space: nowrap;
}
.header-line {
	flex-grow: 1;
	height: 1px;
	background-color: #e5e5e5;
	margin-right: 15px;
}
/* Custom Arrows */
.custom-nav-arrows {
	display: flex;
	gap: 4px;
}
.nav-arrow {
	width: 30px;
	height: 30px;
	background: #f1f1f1;
	border: none;
	color: #888;
	font-size: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s;
}
.nav-arrow:hover {
	background: var(--primary-orange);
	color: #fff;
}
/* --- News & Testimonials General --- */
.news-testimonials-section {
	padding: 80px 0;
	background-color: #fff;
	font-family: 'Open Sans', sans-serif;
}
/* Header with Split Line & Buttons */
.section-header-split {
	display: flex;
	align-items: center;
}
.section-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #333;
	margin: 0;
	padding-right: 15px;
	white-space: nowrap;
}
.header-line {
	flex-grow: 1;
	height: 1px;
	background-color: #e5e5e5;
	margin-right: 15px;
}
/* Square Nav Buttons */
.custom-nav-arrows {
	display: flex;
	gap: 4px;
}
.nav-arrow {
	width: 32px;
	height: 32px;
	background: #f1f1f1;
	border: none;
	color: #444;
	font-size: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s;
}
.nav-arrow:hover {
	background: #ccc;
	color: #000;
}
/* --- News Card Design --- */
.news-card {
	height: 100%;
	margin-bottom: 20px;
}
.news-img-box {
	height: 180px;
	overflow: hidden;
	position: relative;
}
.news-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news-body {
	background-color: #333; /* Dark background */
	padding: 25px 20px 60px 20px; /* High bottom padding for button */
	position: relative;
	color: #bbb;
}
/* Triangle Pointer pointing UP into image */
.news-body::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 20px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #333;
}
.news-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 10px;
}
.news-title a {
	color: var(--primary-orange);
	text-decoration: none;
	transition: 0.3s;
}
.news-title a:hover {
	color: #fff;
}
.news-meta {
	font-size: 11px;
	color: #888;
	margin-bottom: 15px;
}
.news-meta span {
	margin-right: 10px;
}
.news-meta i {
	margin-right: 4px;
}
.news-excerpt {
	font-size: 13px;
	line-height: 1.6;
	color: #fff;
	margin-bottom: 0;
}
/* Read More Button Hanging Off */
.btn-read-news {
	position: absolute;
	bottom: -1px; /* Align with bottom */
	right: 0;
	background-color: var(--primary-orange);
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 700;
	padding: 12px 20px;
	text-decoration: none;
	transition: 0.3s;
}
.btn-read-news:hover {
	background-color: #fff;
	color: #333;
}
/* --- Testimonials Styling --- */
.testimonial-wrap {
	padding-top: 10px;
}
.quote-box {
	background: #fff;
	border: 1px solid #e5e5e5;
	padding: 30px;
	position: relative;
	margin-bottom: 30px;
	font-size: 14px;
	color: #777;
	line-height: 1.7;
	font-style: italic;
}
/* Speech Bubble Arrow */
.quote-box::after, .quote-box::before {
	content: '';
	position: absolute;
	top: 100%;
	left: 40px;
	border: solid transparent;
	height: 0;
	width: 0;
	pointer-events: none;
}
.quote-box::before {
	border-color: rgba(229, 229, 229, 0);
	border-top-color: #e5e5e5;
	border-width: 11px;
	margin-left: -1px;
}
.quote-box::after {
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #fff;
	border-width: 10px;
	margin-left: 0;
}
.author-wrap {
	display: flex;
	align-items: center;
	padding-left: 20px;
}
.author-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin-right: 20px;
	object-fit: cover;
}
.author-info h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #333;
	margin-bottom: 3px;
}
.author-info span {
	font-size: 13px;
	color: #888;
}
/* --- Main Footer Section --- */
.stats-section {
	position: relative;
	/* Replace 'your-image.jpg' with the actual path to your background image */
	background-image: url("../image/counter-bg.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed; /* Optional: Makes it a parallax effect */
	padding: 80px 20px;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
}
/* Dark Overlay to make text readable */
.stats-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7); /* Darkens the background by 70% */
	z-index: 0
}
.stats-section .container {
	position: relative;
	z-index: 1;
}
/* Heading Styling */
.stats-section h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 50px;
	text-transform: capitalize; /* Ensures standard casing */
}
/* Stats Grid Layout */
.stats-row {
	display: flex;
	justify-content: left;
	gap: 80px; /* Space between the items */
	flex-wrap: wrap; /* Allows stacking on mobile */
}
.stat-item {
	display: flex;
	flex-direction: column;
	align-items: left;
	text-align: left;
}
/* Icon Styling */
.icon {
	font-size: 2.5rem;
	color: #ff9900; /* The specific orange color from your image */
	margin-bottom: 15px;
}
/* Number Styling */
.count {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0;
}
/* Label Styling */
.label {
	font-size: 0.9rem;
	font-weight: 400;
	color: #e0e0e0;
}
.clients-section {
	padding: 80px 0;
	background-color: #f5f5f5;
}
/* --- Header: Title + Line + Arrows --- */
.section-header {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.section-title {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	white-space: nowrap; /* Keeps title on one line */
	margin-right: 20px;
}
/* The decorative line in the middle */
.header-line {
	flex-grow: 1;
	height: 1px;
	background-color: #e0e0e0;
	margin-right: 20px;
}
/* Custom Navigation Arrows */
.custom-nav {
	display: flex;
	gap: 5px;
}
.nav-btn {
	width: 40px;
	height: 40px;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #333;
	font-size: 14px;
}
.nav-btn:hover {
	background-color: #ff9900; /* Theme Orange */
	border-color: #ff9900;
	color: #fff;
}
/* --- Slider Items (The Boxes) --- */
.clients-section {
	padding: 80px 0;
	background-color: #f5f5f5;
}
/* --- Header: Title + Line + Arrows --- */
.section-header {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.section-title {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	white-space: nowrap; /* Keeps title on one line */
	margin-right: 20px;
}
/* The decorative line in the middle */
.header-line {
	flex-grow: 1;
	height: 1px;
	background-color: #e0e0e0;
	margin-right: 20px;
}
/* Custom Navigation Arrows */
.custom-nav {
	display: flex;
	gap: 5px;
}
.services-section .nav-btn {
	width: 40px;
	height: 40px;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #333;
	font-size: 14px;
	float: left;
}
.services-section .nav-btn:hover {
	background-color: #ff9900; /* Theme Orange */
	border-color: #ff9900;
	color: #fff;
}
/* --- Slider Items (The Boxes) --- */
.client-item {
	background: #fff;
	border: 1px solid #eee;
	padding: 40px 20px;
	text-align: center;
	height: 150px; /* Fixed height for consistency */
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	margin: 0 10px; /* Gap between slides */
}
/* Hover Effect: Box Shadow */
.client-item:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	border-color: transparent;
}
/* --- The Icons/Logos (Visual Logic) --- */
.client-item i, .client-item img {
	font-size: 50px; /* Icon size */
	color: #ccc; /* Default Gray color */
	transition: all 0.3s ease;
	max-width: 100%;
	opacity: 0.7;
}
/* Hover Effect: Color Change */
.client-item:hover i {
	color: #ff9900; /* Changes to orange on hover */
	opacity: 1;
	transform: scale(1.1); /* Slight zoom */
}
/* If using Images instead of Icons: */
.client-item img {
	filter: grayscale(100%); /* Start Black & White */
}
.client-item:hover img {
	filter: grayscale(0%); /* Full color on hover */
	opacity: 1;
}
/* --- Footer Wrapper --- */
.site-footer {
	width: 100%;
	color: #999;
	font-size: 14px;
	line-height: 1.7;
}
/* Top Section (Dark Grey) */
.footer-content {
	background-color: #282828;
	padding: 85px 0 80px;
}
/* Flex Grid Layout */
.footer-content .row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
}
/* --- Column 1: Brand & About --- */
.col-about {
	flex: 0 0 35%; /* Takes up roughly 35% width */
}
/* The Brand Box Layout */
.brand-box {
	display: flex;
	align-items: flex-start; /* Aligns text to top of line */
	margin-bottom: 30px;
}
/* The Vertical Blue Line */
.brand-line {
	width: 2px;
	height: 65px; /* Adjust based on text height */
	background-color: #5d7c8f; /* Muted blue-grey */
	margin-right: 15px;
	margin-top: 5px;
}
.brand-text {
	display: flex;
	flex-direction: column;
}
/* The "BEESS" Outline Text */
.logo-outline {
	font-family: sans-serif;
	font-size: 42px;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	color: transparent; /* See-through fill */
	-webkit-text-stroke: 1px #ff9900; /* Orange Outline */
	margin-bottom: 5px;
	letter-spacing: 1px;
}
.logo-sub {
	color: #fff;
	font-weight: 700;
	font-size: 16px;
}
.footer-desc {
	margin-bottom: 30px;
	padding-right: 20px;
}
/* Social Icons */
.social-icons a {
	color: #777;
    margin-right: 18px;
    font-size: 16px;
    transition: 0.3s;
    margin: 0 5px;
	
}
.social-icons a:hover {
	color: #ff9900;
}
/* --- Headings for Info & Contact --- */
.widget-title {
	color: #fff;
	font-weight: 600;
    font-size: 26px;
	position: relative;
}
/* --- Column 2: Information (Nested Columns) --- */
.col-info {
	flex: 0 0 30%; /* Middle column width */
}
.info-lists-container {
	display: flex;
	justify-content: space-between;
}
.footer-links {
	list-style: none;
	flex: 1; /* Each sub-list takes half space */
	margin: 0;
	padding: 0;
}
.footer-links li {
	margin-bottom: 12px;
    float: left;
    width: 50%;
}
.footer-links a {
	text-decoration: none;
    color: #999;
    display: flex;
    align-items: center;
    transition: 0.3s;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.6;
}
.footer-links a i {
	font-size: 10px;
	margin-right: 10px;
	font-weight: 900;
}
.footer-links a:hover {
	color: #ff9900;
	padding-left: 5px;
}
/* --- Column 3: Contact --- */
.col-contact {
	flex: 0 0 25%;
}
.contact-list {
	list-style: none;
	margin: 0;
	padding: 0
}
.contact-list li {
	display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-family: Source Sans Pro;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.6;
}
.icon-orange {
	color: #ff9900;
	margin-right: 15px;
	font-size: 16px;
	margin-top: 2px;
	width: 20px; /* Ensures alignment */
}
.hours-row {
	padding-left: 35px; /* Indent to match text above */
}
/* --- Bottom Copyright Bar --- */
.copyright-bar {
	background-color: #1a1a1a; /* Black/Darker Grey */
	padding: 15px 0;
	position: relative;
	color: #777;
	font-size: 13px;
}
.text-center {
	text-align: center;
}
.copyright-bar p{margin-bottom: 0}
.copyright-bar i {
	color: #fff; /* White heart */
	margin: 0 3px;
}
/* The Angled "Tab" Decoration on the Left */
.angled-tab {
	position: absolute;
	bottom: 100%; /* Sits exactly on top of the black bar */
	left: 0;
	width: 300px; /* Width of the angle effect */
	height: 40px;
	background-color: #1a1a1a; /* Same as copyright bar */
	/* Use clip-path to cut the angle */
	clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
	display: none; /* Hidden by default, enable if needed for desktop */
}
.footer-content .header-line{background-color: rgba(0, 0, 0, 0.2)}
.projects-section .section-header{-webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-direction: column;flex-direction: column;}
/* Responsive Styles */
@media (min-width: 992px) {
	.angled-tab {
		display: block; /* Show the tab on large screens */
		width: 35%; /* Adjust how far the angle goes */
	}
}
@media (max-width: 768px) {
	.row {
		flex-direction: column;
		gap: 50px;
	}
	.col-about, .col-info, .col-contact {
		flex: 100%;
	}
}
/* Responsive Design for Mobile */
@media (max-width: 768px) {
	.stats-row {
		gap: 40px;
		flex-direction: column;
	}
}
/* Responsive */
@media (max-width: 768px) {
	.footer-bottom-menu {
		margin-top: 10px;
		justify-content: center;
	}
}
/* Responsive Tweaks */
@media (max-width: 768px) {
	.about-text-wrap {
		padding-left: 0;
		margin-top: 30px;
	}
	.sidebar-cta-wrapper {
		margin-top: 50px;
	}
}
/* Responsive */
@media (max-width: 991px) {
	.cta-overlap-section {
		margin-bottom: 0;
	}
	.projects-section {
		padding-top: 80px;
	}
	.engineer-img {
		margin-bottom: 0;
		margin-left: 0;
		max-height: 350px;
		display: block;
		margin: 0 auto;
	}
	.cta-text-col {
		text-align: center;
		padding: 40px;
	}
	.portfolio-item.tall {
		height: 300px;
	} /* Reset tall item on mobile */
}


/* ===========***********============ */
.breadcrumb-banner {
    background: url('../image/breadcumb.jpg') center center/cover no-repeat;
    min-height: 350px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.breadcrumb-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 45, 0.80);
}

.breadcrumb-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.breadcrumb-title .highlight {
    color: #ff1e1e;
}

.breadcrumb-img {
    max-height: 380px;
}

/* Responsive */
@media (max-width: 991px) {

    .breadcrumb-banner {
        text-align: center;
        padding: 50px 0;
    }

    .breadcrumb-title {
        font-size: 30px;
    }

    .breadcrumb-img {
        max-height: 260px;
        margin-top: 20px;
    }
}


/* Section Title */
.enquiry-title {
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.enquiry-title span {
    color: #ff1e1e;
}

/* Card Styling */
.enquiry-card {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Subtitle */
.enquiry-subtitle {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Inputs */
.form-control {
    border-radius: 50px;
    padding: 14px 20px;
    border: 1px solid #ddd;
    background: #fff;
}

textarea.form-control {
    border-radius: 20px;
    resize: none;
}

/* Button */
.submit-btn {
    background: #1c1f24;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #000;
}


.contact-section {
    background: #f4f4f4;
}

.contact-title {
    font-weight: 600;
    position: relative;
    margin-bottom: 40px;
}

.contact-title::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    background: #ccc;
    top: 50%;
    margin-left: 20px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 16px;
    color: #555;
}

.contact-info i {
    width: 35px;
    height: 35px;
    background: #ff8c00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-right: 15px;
    font-size: 14px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

@media (max-width: 991px) {
    .contact-title::after {
        display: none;
    }
}

/* Blog Card */
.blog-item {
    background: #fff;
    margin-bottom: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.blog-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Title */
.blog-title {
    font-size: 24px;
    font-weight: 600;
    color: #f39c12;
    margin: 20px 0 10px;
}

.blog-title a {
    text-decoration: none;
    color: inherit;
}

.blog-title a:hover {
    text-decoration: underline;
}

/* Meta */
.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.blog-meta span {
    margin-right: 20px;
}

.blog-meta i {
    margin-right: 6px;
}

/* Content */
.blog-content {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.single-blog {
    background-color: #f8f9fa;
}

.single-blog-image img {
    width: 100%;
    object-fit: cover;
}

.single-blog-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
}

.single-blog-subtitle {
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

.single-blog-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .single-blog-title {
        font-size: 26px;
    }

    .single-blog-subtitle {
        font-size: 22px;
    }

    .single-blog-content p {
        font-size: 15px;
    }
}


/* Product Left Card */
.product-card{
    background:#fff;
    padding:40px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border-radius:6px;
    text-align:center;
}

.product-card img{
    width:100%;
    max-height:350px;
    object-fit:contain;
    margin-bottom:30px;
}

.product-title{
    font-size:32px;
    font-weight:800;
    letter-spacing:1px;
}

.product-title span{
    color:#ff9900;
}

.product-sub{
    font-size:15px;
    color:#555;
}

/* Description */
.product-description p{
    font-size:16px;
    line-height:1.8;
    color:#333;
}

/* Feature Title */
.section-title{
    color:#ff9900;
    font-weight:700;
    margin-top:25px;
    margin-bottom:15px;
}

/* Feature Boxes */
.feature-box{
    background:#dfe5ea;
    padding:10px 15px;
    margin-bottom:10px;
    font-size:15px;
}

/* Range Table */
.range-box{
    background:#e9ecef;
    border-radius:15px;
    padding:20px;
}

.range-box .row{
    padding:10px 0;
    border-bottom:1px solid #d0d0d0;
}

.range-box .row:last-child{
    border-bottom:none;
}

/* Brochure Box */
.brochure-box{
    background:#5c7f92;
    color:#fff;
    padding:40px;
    border-radius:30px;
}

.brochure-box h4{
    font-weight:700;
    margin-bottom:15px;
}

.brochure-box p{
    font-size:14px;
    line-height:1.7;
}

.brochure-box .btn{
    background:#fff;
    color:#000;
    border-radius:50px;
    padding:8px 20px;
}

@media(max-width:991px){
    .product-title{
        font-size:24px;
    }
}

/* Sidebar */
.about-sidebar{
    background:#fff;
    padding:20px 0;
    border-right:1px solid #e5e5e5;
}

.about-sidebar .nav-link{
    color:#333;
    padding:15px 25px;
    border-bottom:1px solid #eee;
    border-radius:0;
    font-weight:500;
	text-align: left;
}

.about-sidebar .nav-link.active{
    background:#f8f9fa;
    color:#000;
    font-weight:600;
}

/* Brochure Box */
.brochure-box{
    background:#fff;
    padding:20px;
    margin-top:20px;
    border:1px solid #eee;
}

.brochure-btn{
    border:1px solid #ddd;
    padding:15px;
    text-align:center;
    font-weight:600;
    cursor:pointer;
}

/* Consulting Box */
.consulting-box{
    background:url('../image/breadcumb.jpg') center/cover no-repeat;
    color:#fff;
    padding:30px;
    margin-top:20px;
    position:relative;
}

.consulting-box::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

.consulting-content{
    position:relative;
    z-index:2;
}

.consulting-box .btn{
    background:#ff9900;
    color:#fff;
    border:none;
    padding:8px 20px;
}

/* Content */
.about-content{
    padding:30px;
    background:#fff;
}

.about-content h3{
    font-weight:700;
    margin-bottom:15px;
}

.about-content p{
    font-size:15px;
    line-height:1.8;
    color:#555;
}

.quote-box{
    background:#f8f9fa;
    padding:20px;
    margin:20px 0;
    border-left:4px solid #ccc;
}

.commitment-list li{
    margin-bottom:10px;
    list-style:none;
}

.commitment-list li::before{
    content:"✔";
    color:#ff9900;
    font-weight:bold;
    margin-right:10px;
}

/* Responsive */
@media(max-width:991px){
    .about-sidebar{
        border-right:none;
        margin-bottom:20px;
    }
}



/* Section */
.history-section{
    padding:70px 0;
}

/* Heading */
.history-section h2{
    font-weight:700;
    margin-bottom:15px;
}

.history-section .subtitle{
    color:#6c757d;
    font-size:16px;
    max-width:800px;
    margin-bottom:50px;
}

/* Timeline */
.timeline{
    position:relative;
}

/* Vertical Line */
.timeline::before{
    content:"";
    position:absolute;
    left:32%;
    top:0;
    width:2px;
    height:100%;
    background:#d9d9d9;
}

/* Timeline Item */
.timeline-item{
    position:relative;
    margin-bottom:70px;
}

/* Orange Dot */
.timeline-item::before{
    content:"";
    position:absolute;
    left:31%;
    top:10px;
    width:18px;
    height:18px;
    background:#ff8c00;
    border-radius:50%;
    border:4px solid #fff;
    box-shadow:0 0 0 2px #d9d9d9;
}

/* Year */
.timeline-year{
    font-size:28px;
    font-weight:700;
    margin-bottom:5px;
}

/* Title */
.timeline-title{
    color:#ff8c00;
    font-weight:600;
    margin-bottom:10px;
}

/* Content */
.timeline-content p{
    color:#555;
    line-height:1.8;
    font-size:15px;
}

/* Image */
.timeline-img img{
    width:100%;
    border-radius:4px;
	padding-right: 20px;
}

/* Responsive */
@media(max-width:768px){

    .timeline{
        padding-left:40px;
    }

    .timeline::before{
        left:18px;
    }

    .timeline-item::before{
        left:9px;
    }
}


/* Section */
.products-section {
    padding: 60px 0;
}

/* Card */
.products-section .product-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
	padding: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Image Area */
.product-img {
    background: #f8f8f8;
    text-align: center;
    padding: 0;
}

.product-img img {
    max-height: 180px;
}

/* Content */
.product-content {
    padding: 15px 20px;
}

.product-title {
    font-size: 22px;
    font-weight: 800;
    color: #0b2c48;
    text-transform: uppercase;
}

.product-sub {
    color: #444;
    margin: 10px 0 30px;
}

/* Button */
.btn-know {
    border-radius: 50px;
    padding: 10px 30px;
    background: #e0e0e0;
    border: none;
    font-weight: 500;
}

.btn-know:hover {
    background: #000;
    color: #fff;
}


/* Section */
.events-section{
    padding:60px 0;
}

/* Card */
.event-card{
    border-radius:30px;
    overflow:hidden;
    
    transition:0.3s;
    height:100%;
}
.event-card:hover{
	box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

/* Image */
.event-img{
    overflow:hidden;
    border-top-left-radius:30px;
    border-top-right-radius:30px;
}

.event-img img{
    width:100%;
    transition:0.5s ease;
}

/* Middle Image Hover Effect */
.middle-card .event-img img:hover{
    transform:scale(1.08);
}

/* Content */
.event-content{
    padding:30px 25px;
    text-align:center;
}
.event-content a{
	text-decoration: none;
}

.event-content a .event-title{
    font-weight:700;
    font-size:22px;
    margin-bottom:15px;
	color: #0b2c48;
}
.event-content a:hover{
	text-decoration: underline;
}
.event-text{
    font-size:16px;
    color:#333;
    line-height:1.6;
}

.event-date{
    color:red;
    font-weight:600;
    margin-top:10px;
}

/* Responsive */
@media(max-width:991px){
    .event-title{
        font-size:18px;
    }
}


/* Section */
.event-gallery{
    padding:70px 0;
}

/* Image Card */
.gallery-item{
    border-radius:20px;
    overflow:hidden;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;
    transition:0.4s ease;
}

/* Hover Effect */
.gallery-item:hover img{
    transform:scale(1.05);
}

/* Spacing */
.gallery-row{
    margin-bottom:30px;
}


/* Mega Menu */
.mega-dropdown {
    position: static;
}

.mega-menu {
    width: 950px;
    left: -300px;
    right: 0;
    border: none;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Category Bar */
.category-bar{
	background: #ececec;
	
}

.category-bar h6 {
    font-weight: 600;
    color: #333;
	font-size: 15px;
	margin-bottom: 0;
}

/* Product Item */
.product-item {
    display: block;
    text-decoration: none;
    padding: 15px;
    transition: 0.3s ease;
}

.product-item img {
    height: 100px;
    object-fit: contain;
    transition: 0.4s ease;
}

.product-item p {
    margin-top: 10px;
    font-size: 15px;
    color: #222;
}

/* Hover Effect */
.product-item:hover img {
    transform: translateY(-10px);
}

.product-item:hover p {
    color: #ff9900;
}

/* Hide all tabs */
.tabcontent {
    display: none;
}

.tabcontent.active {
    display: block;
}

/* Tab Link Style */
.tablink {
    cursor: pointer;
    padding: 15px 10px;
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.tablink:hover {
    background: #ff9900;
	color: #fff;
}
.tablink:hover h6{
	color: #fff;
}
/* Active Tab */
/* .tablink.active {
    background: #d60000;
	color: #fff;
} */
 .product_tab{
	border-right: 0;
	background: #fff;
	    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
		padding: 0;
 }