﻿/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

*/

/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*-------- BODY STYLES --------*/

body {

}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}


:root {
  /* Colors */
  --orange: #F65311;
  --grey: #F2F2F2;
  --blk: #0C0C0C;
  --white: #F5F5F5;

  /* Typography */
  --font-main: "poppins", sans-serif;
  --font-body: "roboto", sans-serif;
  --italic: italic;
  --uppercase: uppercase;
  --capitalize: capitalize;
	
	
  /* Hero Heading */
  --hero-size: clamp(3rem, 6vw, 5rem);

  /* Section Heading */
  --heading-size: clamp(2rem, 4vw, 3.5rem);
  --heading-weight: 600;


  /* Radius */
  --radius: 20px;
  --radius-lg: 30px;

}

.wid95 {width: 95%;margin: 0 auto;}
.wid90 {width: 90%;margin: 0 auto;}
.wid85 {width: 85%;margin: 0 auto;}
.wid80 {width: 80%;margin: 0 auto;}
.wid75 {width: 75%;margin: 0 auto;}

.white {color: #fff;}
.white-bg {background-color: #fff;}
.black {color: #0C0C0C;}
.black-bg {background-color: #0C0C0C;}
.orange {color: #F65311;}
.orange-bg {background-color: #F65311;}
.grey-bg {background-color: #F5F3F0;}

.italic {font-style: italic;}
.uppercase {text-transform: uppercase;}
.capitalize {text-transform: capitalize;}

.heading1 {
    font-family: var(--font-main);
	font-size: 5rem;
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 10px 0;
}
.subheading { 
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.heading-sm {
	font-size: 24px;
    margin-bottom: 35px;
    font-weight: 800;
    font-family: var(--font-main);
    /* line-height: 3.5rem; */
	text-transform: uppercase;
}
.body {
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.6;
}
.body-sm {
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.6;
}




.btn {
	display: inline-block;
	padding: 15px 40px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.btn-primary {
	background-color: var(--orange);
	color: #fff;
	border: 2px solid var(--orange);
}
.btn-primary:hover {
	background-color: #d64a0b;
	transform: translateY(-2px);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(2px);	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.6)
}
.btn-secondary:hover {
	background-color: #fff;
	color: var(--orange);
	transform: translateY(-2px);
}
.btn-secondary-sm {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(2px);	color: #fff;
	border: 1px solid #fff;
	font-size: 13px!important;
	padding: 10px 30px!important;
	width: fit-content!important;
}
.btn.btn-secondary-sm {
	width: fit-content!important;
	margin: 0!important;
}
.btn-secondary-sm:hover {
	background-color: #fff;
	color: var(--orange);
	transform: translateY(-2px);
}
.btn-dark {
    background: #0C0C0C;
	color: #fff;
	border: 2px solid #0C0C0C;
}
.btn-dark:hover {
	background-color: #211F1D;
	transform: translateY(-2px);
}

.breadcrumbs {
    display: flex;
    font-size: 16px !important;
    color: #151515 !important;
    padding: 3% 0 2%;
    flex-wrap: wrap;
    align-items: center;
    letter-spacing: 0.05em;
    gap: 10px;
	font-family: ;
}
.breadcrumbs a {
    display: inline-block;
    padding: 12px;
    color: #151515;
    font-size: 16px !important;
	font-family: ;
}


/*--- HEADER STYLES ---------------------*/

.top-bar .wid95 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}
.top-bar {
    font-family: var(--font-main);
    font-size: 15px;
}
.top-bar a {
    color: var(--white);
}
.top-bar i {
    font-size: 14px;
    padding-right: 5px;
}
.header {
    display: flex;
    align-items: center;
	margin: 0 auto;
    padding: 10px 50px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.head-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}
.head-logo a {
	display: flex;
	align-items: center;
}
.head-logo a img {
	height: auto;
	max-width: 100%;
}
.logo-separator {
	width: 2px;
	height: 60px;
	background-color: #ccc;
	margin: 0 10px;
}


/*---BODY--------------------------------*/

.hero {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
}
.hero.home {
	height: 700px;
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('/siteart/hero1.jpg') center/cover no-repeat;
	background-attachment: fixed;
}

.hero.about {
	height: 500px;
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('/siteart/about.jpg') center/cover no-repeat;
	background-attachment: fixed;
}

.hero-content {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 50px;
	position: relative;
	z-index: 2;
}
/*
.hero-text {
	max-width: 600px;
}
*/
.sub-label {
    margin-bottom: 20px;
    border-radius: 28px;
    background: rgba(246, 83, 17, 0.25);
    padding: 10px 20px;
    width: fit-content;
    color: #F65311;
    backdrop-filter: blur(2px);
}
.hero-description {
	color: #fff;
	margin-bottom: 40px;
	max-width: 580px;
}
.wrap-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.header-cta a {
    width: max-content;
}


/*--- MACHINERY SECTION STYLES ---------------------*/
.machinery {
	padding: 80px 50px;
}

.content-wrap {
	max-width: 1600px;
	margin: 0 auto;
}

.section-heading {
	font-family: var(--font-main);
	font-size: 3rem;
	font-weight: 800;
	color: #000;
	margin-bottom: 60px;
    line-height: 3.5rem;
}

.machinery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.machinery-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	position: relative;
}

.machinery-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.machinery-image {
	position: relative;
	width: 100%;
	height: 500px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	background-color: #000;
}

.machinery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.20) 100%);

	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 20px;
	transition: all 0.3s ease;
}

.machinery-card:hover .machinery-overlay {
	background: rgba(0, 0, 0, 0.5);
}
.wrap-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.machinery-info {
	padding: 30px;
}

.machinery-title {
	font-family: var(--font-main);
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 10px 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 1;
}

.machinery-desc {
	font-family: var(--font-body);
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 20px 0;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 1;
}

.machinery-card .machinery-image {
	position: relative;
}

.machinery-card .machinery-info {
	position: absolute;
	color: #fff;
	z-index: 2;
	padding: 40px 30px 30px 30px;
	bottom: 0;
}

.explore-btn {
	display: inline-block;
	padding: 12px 23px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	color: #fff;
	font-family: var(--font-main);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 25px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(2px);
}

.explore-btn:hover {
	background-color: var(--orange);
	border-color: var(--orange);
	color: #fff;
}




section.brands-section {
    padding: 80px 50px;
}
.brands-section .content-wrap {
    display: flex;
    align-items: flex-end;
    gap: 5vw;
}
.brands-content {
    flex: 1;
    max-width: 540px;
}
.brands-content h2 {
    margin-bottom: 20px;
}
.brands-cards {
    display: flex;
    gap: 30px;
    flex: 1;
}
.brand-card{
    flex:1;
    min-height:185px;

    background:#fff;
    border:1px solid #ddd;
    border-radius:20px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-decoration:none;
    color:#222;

    transition:.3s ease;
}

.brand-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border-color:#ff4d00;
}

.brand-card img{
    max-width:240px;
    width:80%;
    margin-bottom:35px;
}

.card-link{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 15px;
}

.arrow{
    transition:transform .3s;
}

.brand-card:hover .arrow{
    transform:translateX(6px);
}

section.rental-section {
    background: linear-gradient(90deg, #F65311 0%, #FF3700 100%);
	padding: 90px 50px;
}
.section-heading.white {
    color: #fff !important;
}
.rental-content {
    justify-items: center;
    text-align: center;
}
.rental-content h2 {
    margin-bottom: 20px;
}
.rental-content p {
    margin-bottom: 30px;
}



/*-------- FOOTER STYLES ----------------*/

.footer{
    background:#090909;
    color:#fff;
}
.footer-container{
    width:90%;
    max-width:1600px;
    margin:auto;
    padding:80px 0;
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:100px;
}

/* Left */
.logos{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:35px;
}
.logos img{
    height:50px;
    object-fit:contain;
}
.company p{
    max-width:340px;
    color:#d6d6d6;
    line-height:1.45;
    font-size:18px;
    margin-bottom:35px;
}
.socials{
    display:flex;
    gap:20px;
}
.socials a{
    /* width:42px; */
    /* height:42px; */
    /* border-radius:50%; */
    display:flex;
    justify-content:center;
    align-items:center;
    /* text-decoration:none; */
    color:#ff4d15;
    /* border:2px solid #ff4d15; */
    font-size: 25px;
    transition:.3s;
}
.socials a:hover{
    /* background:#ff4d15; */
    color:#fff;
}

/* Center */
.link-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

/* Right */
.footer-col.contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-col.contact a.heading-sm {
    line-height: 28px;
	color: #fff;
	margin-bottom: 30px;
}
.call-btn{
	display: inline-flex;
    align-items: center;
    background: #ff4d15;
    color: #fff;
    padding: 5px 5px 5px 28px;
    border-radius: 50px;
    gap: 15px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.call-btn span{
    width:48px;
    height:48px;
    background:#111;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}
.call-btn:hover{
	background-color: #d64a0b;
	transform: translateY(-2px);
}

/* Bottom */
.footer-bottom{
    background:#211F1D;
    padding:28px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#d4d4d4;
    font-size:15px;
}





/* Contact Page */

section.content-wrap.contact-page {
    padding: 80px 50px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 2.8vw, 3rem);
    line-height: 1.05;
}
.contact-card {
    display: grid;
    gap: 18px;
}
.contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
	align-items: start;
}
.contact-item .icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(241, 89, 10, 0.1);
    color: #f1590a;
    font-size: 1rem;
}
.contact-item strong {
    display: block;
    /* margin-bottom: 6px; */
    font-size: 0.95rem;
}
.contact-item p {
    margin: 0;
    color: #505050;
    font-size: 0.95rem;
    line-height: 1.6;
}
.contact-form-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(15, 15, 15, 0.08);
    padding: 32px;
}

/* Contact Form */


.contact-form {
    display: grid;
    gap: 24px;
}

.contact-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    color: #151515;
}

.contact-field span {
    font-weight: 600;
}

.contact-field input,
.contact-field textarea {
    border: 1px solid #d9d9d9;
    border-radius: 15px;
    padding: 16px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    color: #151515;
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #1C3D60;
    box-shadow: 0 0 0 4px rgba(28, 61, 96, 0.08);
}

.contact-field textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-submit {
    width: fit-content;
    padding: 16px 34px;
    border-radius: 999px;
    font-size: 16px;
    letter-spacing: 0.02em;
}


/* About page */
.hero-text.subpage {
    max-width: fit-content;
}
.about-aside p {
    margin-bottom: 15px;
}

.padd-norm {
	padding: 80px 50px;
}
/* Meet the team section */
.about-team .team-header { text-align: center; }
.about-team .team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  align-items: start;
  justify-items: center;
  margin-top: 10px;
}

.about-team .team-card { text-align: center; padding: 0 8px; justify-items: center;}
.about-team .team-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #F5F3F0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  overflow: hidden;
}
.about-team .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.about-team .team-name {
  font-family: var(--font-main);
  font-weight: 800;
  margin-top: 18px;
  font-size: 1.05rem;
  color: #111;
}
.about-team .team-role {
  margin-top: 8px;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}
.about-aside {
    margin-bottom: 60px;
}


/* About page info cards (three boxes) */
.about-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 28px;
  align-items: stretch;
}



.info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 8px 28px rgba(10,10,10,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex: 0 0 56px;
}

.info-title {
  margin: 0 0 6px;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.05rem;
  color: #111;
}




.parts-text a.btn.btn-dark {
    margin-top: 50px!important;
    font-weight: 600!important;
	align-self: center;
}





/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (min-width: 768px) {
	
}

@media (max-width:1200px) {
  .about-team .team-grid { grid-template-columns: repeat(4, 1fr); gap: 36px; }
}

@media only screen and (max-width: 1190px) {
	.header-cta {
		display: none;
	}
	.header {
		justify-content: space-between;
		gap: 15px;
		padding: 10px 30px;
	}
	.brands-section .content-wrap {
		flex-direction: column;
		align-items: normal;
	}
	.brands-content {
		max-width: fit-content;
	}
}

@media (max-width: 1100px) {
  .about-info-cards { grid-template-columns: repeat(2, 1fr); }
}

@media only screen and (max-width: 1024px) {
	.hero {
		height: 500px;
	}
	
	.hero-heading-white,
	.hero-heading-orange {
		font-size: 3rem;
	}
	
	.hero-description {
		font-size: 16px;
	}
	
	.machinery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.section-heading {
		font-size: 2.5rem;
	}
}

@media(max-width:991px){

    .footer-container{
        grid-template-columns:1fr;
        gap:60px;
        text-align:center;
    }
    .logos,
    .socials,
    .link-buttons{
        justify-content:center;
    }
    .company p{
        margin:auto auto 30px;
    }
    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }
	.footer-col.contact {
		align-items: center;
	}
}

@media (max-width:900px) {
	.about-team .team-grid { 
		grid-template-columns: repeat(2, 1fr); 
		gap: 28px; 
	}
	.contact-grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 767px) {
	.hero {
		height: 450px;
		padding: 0 30px;
		width: auto;
	}
	
	.hero-content {
		padding: 0 20px;
	}
	
	.hero-heading-white,
	.hero-heading-orange {
		font-size: 2.5rem;
	}
	
	.hero-buttons {
		flex-direction: column;
		gap: 15px;
	}
	
	.btn {
		width: 100%;
		text-align: center;
	}
	
	.machinery {
		padding: 60px 30px;
	}
	
	.machinery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.section-heading {
		font-size: 2rem;
		margin-bottom: 40px;
		line-height: 2.5rem;
	}
	
	.machinery-card .machinery-info {
		margin-top: -60px;
		padding: 30px 20px 20px 20px;
	}
	
	.machinery-title {
		font-size: 20px;
	}
	.heading1 {
		font-size: 3.5rem;
	}
	.head-logo {
		gap: 10px;
	}
	.contact-row {
		    grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
  .about-info-cards { grid-template-columns: 1fr; }
}

@media (max-width:520px) {
  .about-team .team-grid { grid-template-columns: 1fr; gap: 24px; }
  .brands-cards { flex-direction: column; }
  .heading1 { font-size: 1.8rem;}
  .hero.home .sub-label { display: none; }
  .hero.home { height: 600px;}
}

@media only screen and (max-width: 480px) {
	.info-card { display: flex; }
	.hero {
		height: 350px;
		padding: 0 15px;
	}
	
	.hero-content {
		padding: 0 15px;
	}
	
	.hero-text {
		max-width: 100%;
	}
	
	.hero-heading-white,
	.hero-heading-orange {
		font-size: 2rem;
	}
	
	.sub-label {
		font-size: 12px;
		margin-bottom: 15px;
	}
	
	.hero-description {
		margin-bottom: 30px;
	}
	
	.hero-buttons {
		flex-direction: column;
		gap: 10px;
	}
	
	.btn {
		width: 100%;
		text-align: center;
		padding: 12px 30px;
		font-size: 14px;
	}
	
	/* .machinery {
		padding: 40px 15px;
	} */
	
	.machinery-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.section-heading {
		font-size: 1.5rem;
		margin-bottom: 30px;
	}
	
	.section-label {
		font-size: 12px;
		margin-bottom: 15px;
	}
	
	.machinery-image {
		height: 300px;
	}
	
	.machinery-card .machinery-info {
		margin-top: -50px;
		padding: 30px 15px 20px 15px;
	}
	
	.machinery-title {
		/* font-size: 18px; */
		margin-bottom: 8px;
	}
	
	.machinery-desc {
		margin-bottom: 15px;
	}
	
	.explore-btn {
		padding: 10px 25px;
		font-size: 12px;
	}

	section.content-wrap.contact-page, section.brands-section, section.rental-section, .padd-norm {
		padding: 50px 30px;
	}
}

@media only screen and (max-width: 480px) {
	.top-col.lf {
		display: none;
	}
	.logos {flex-direction: column;}
}
