.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header .container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: #f59e0b;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #f59e0b;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: #f59e0b;
}

.quote-btn {
  background: #f59e0b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #d97706;
}

body {
  padding-top: 80px;
}.hero {
  background: url('./images/crane.png') center/cover no-repeat;
  height: 100vh;
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  display: flex;
  align-items: center;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-content {
  color: white;
  max-width: 700px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.buttons {
  display: flex;
  justify-content: center; 
  gap: 15px;
}

button {
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.primary {
  background: #f59e0b;
  color: white;
}

.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px;
  background-color: #ffffff; 
}

.grid div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grid h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.grid p {
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555;
}

.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.grid button {
  width: fit-content;
  background: #f59e0b;
  color: white;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.services-wrapper {
  background-color: #0f172a; 
}

.services {
  padding: 60px 20px;   
  color: #ffffff;
  text-align: center;
  display: block;       
  background-color: inherit;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;        
  background-color: inherit;   
}

.card {
  background-color: #ffff; 
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #000000;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.brands {
  padding: 100px 20px;
  background-color: #f5f5f5; 
  text-align: center;
}

.brands .subtitle {
  font-size: 12px;
  letter-spacing: 4px;
  color: #6b7280;
  margin-bottom: 15px;
}

.brands h2 {
  font-size: 40px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
}

.brands .desc {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.6;
  color: #6b7280;
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px; 
  flex-wrap: wrap;
}

.logo-grid img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.25; 
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}
.stats-section {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #f5f5f5; 
  padding: 4rem 1rem;
  flex-wrap: wrap;
  gap: 2rem;
  overflow: hidden;
}

.strip-text {
  position: absolute;
  top: 50%; 
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 10vw;
  font-weight: bold;
  color: #ccc; 
  opacity: 0.15;
  transform: translateY(-50%);
  pointer-events: none; 
  white-space: nowrap;
}

.stat {
  padding: 40px 10px;
  text-align: center;
  z-index: 1; 
}

.stat .number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: #111;
}

.stat .label {
  font-size: 1rem;
  color: #888;
  opacity: 0.9;
}
.equipment-section {
  padding: 80px 20px;
  background-color: #d6d6d6; 
  text-align: center;
}

.equipment-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #111;
}

.equipment-section p {
  max-width: 700px;
  margin: 0 auto 40px; 
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.equipment-grid {
  display: flex;
  justify-content: space-between; 
  gap: 20px;
}

.equipment-grid .card {
  flex: 1;             
  min-width: 0;         
  background-color: #ffffff;
  color: #111;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}
.equipment-grid .card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.equipment-grid .card p {
  font-size: 14px;
  color: #666;
}

.equipment-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.industries-section {
  background: #f8fafc;
  padding: 60px 20px;  
  display: flex;
  align-items: center;
  padding: 30px 10px;
}

.industries-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 200px;          
  max-width: 1200px;
  margin: 0 auto;
}

.industries-text {
  flex: 0.9;
  margin-left: -20px;   
}
.sub-title {
  letter-spacing: 4px;
  color: #f59e0b;
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
}

.industries-text h2 {
  font-size: 48px;      
  white-space: nowrap;  
}

.industries-text p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 480px;
}

.industries-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.industry-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #fff7ed;
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 24px;
  flex-shrink: 0;
}

.industry-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #111827;
}

.industry-card p {
  font-size: 14px;
  color: #6b7280;
}

.why-us {
  background: #f3f3f3;
  padding: 100px 20px;
  text-align: center;
}

.why-us h2 {
  font-size: 36px;
  margin-bottom: 60px;
}

.why-us-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  counter-reset: item;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-item::before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  font-size: 40px;
  font-weight: bold;
  color: #f59e0b;
  margin-bottom: 10px;
}

.why-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 14px;
  color: #4b4b4b;
  line-height: 1.6;
  max-width: 220px;
}
.dark {
  background: #0b1d3a;
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.dark h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.section-text {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.6;
}

.highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.highlight-card {
  background: #ffffff;
  color: #000;
  padding: 25px;
  border-radius: 8px;
  width: 220px;
  text-align: center;
}

.highlight-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0b1d3a;
}

.highlight-card p {
  font-size: 14px;
}
.split-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.split-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.split-image {
  flex: 1;
}

.split-image img {
  width: 100%;
  border-radius: 10px;
}

.split-content {
  flex: 1;
}

.split-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700; 

}

.split-content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.split-content button {
  padding: 12px 24px;
  background: #0b3d91;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.cta-section {
  text-align: center;
  padding: 100px 20px;
  background: #0f172a; 
  color: #ffffff;
}

.cta-section h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}

.light-text {
  color: #ffffff;
}

.accent-text {
  color: #f59e0b 
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #d1d5db;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.primary {
  background: #f59e0b;
  color: white;
}

.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.footer {
  background: #020617;
  color: #e5e7eb;
  padding: 70px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
}

.footer h3 {
  color: #f59e0b;  
  font-weight: 900; 
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col.left p {
  max-width: 400px;
  line-height: 1.6;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer a:hover {
  color: #f97316;
}

.footer-col.right p {
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
  font-size: 15px;
}

.social-icons a:hover {
  background: #f59e0b;
  color: #020617;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1e293b;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 13px;
  color: #94a3b8;
}
.work-section {
  padding: 80px 20px;
  background: #ffffff; 
  text-align: center;
}

.work-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.work-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.custom-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;  
  grid-template-rows: repeat(3, 200px);
  gap: 20px;
}

.custom-grid img:nth-child(1) {
  grid-row: 1 / span 3;
  grid-column: 1 / 2;
}

.custom-grid img:nth-child(2) {
  grid-row: 1 / 2;
}

.custom-grid img:nth-child(3) {
  grid-row: 2 / 3;
}

.custom-grid img:nth-child(4) {
  grid-row: 3 / 4;
}

.custom-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s ease;
}

.custom-grid img:hover {
  transform: scale(1.03);
}
