    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      
    }

    nav {
      background-color: #303030;
      color: white;
      top: 0;
      position: sticky;
      z-index: 999;
     background-image: url("images/crane banner.png");

      
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      flex-wrap: wrap;
      margin-right: 70px;

    }
     .navbar::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.848); /* Black overlay with transparency */
      z-index: 0;
    }


    .navbar .logo {
      font-size: 1.5em;
      font-weight: bold;
    }

    .navbar ul {
      display: flex;
      list-style: none;
      gap: 30px;


    }

    .navbar ul li {
      position: relative;
      font-size: 18px;


    }

    .navbar ul li a {
      display: block;
      padding: 10px 15px;
      color: white;
      text-decoration: none;
    }

    .navbar ul li:hover {
      background-color: #444;
    }

    .navbar ul li ul {
      display: none;
      position: absolute;
      background-color: #444;
      top: 100%;
      left: 0;
      min-width: 180px;
      z-index: 1000;
    }

    .navbar ul li:hover ul {
      display: block;
    }

    .navbar ul li ul li a {
      padding: 10px;
      white-space: nowrap;
    }

    /* Hamburger Styles */
    .menu-toggle {
      display: none;
      font-size: 1.5em;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
        color: white;
      }

      .navbar ul {
        display: none;
        width: 100%;
        flex-direction: column;
      }

      .navbar ul.active {
        display: flex;
      }

      .navbar ul li {
        width: 100%;
      }

      .navbar ul li ul {
        position: static;
      }
    }
    .hero-section {
  background-image: url("images/crane banner.png"); /* 🖼️ Use your own image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  color: white;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 60px 40px;
  position: relative;
 justify-content: center;
 align-items: center;
 text-align: center;

}
/* Fade In Animation */
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-content h1 {
  font-size: 60px;
  color: #000000;
  font-weight: 900;
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
 
}
.hero-content h4 {
  font-size: 30px;
  color: #000000;
  font-weight: 900;
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
 
}
.btn1{
    background-color: #333;
  color: #fff;
 padding:10px 15px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 17px;
  margin-top: 20px;
}
.btn1:hover{
  background-color: white;
  color: #333;
  border: 2px solid black;

}


    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: 1.5em;
      }
      
    }

        .section1 {
      height: 160px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
      background-color:#303030; 
      color: white;
    }

  

    .content h1 {
        margin-top: 10px;
      font-size: 22px;
      margin-bottom: 20px;
    }

    .btn {
      display: inline-block;
      background-color: #ffffff;
      color: #2e2e2e;
      padding: 12px 28px;
      font-size: 1.1rem;
      text-decoration: none;
      border-radius: 5px;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .btn:hover {
      background-color:#303030;
      color: #ffffff;
      border: 2px solid white;
    }

    @media (max-width: 768px) {
      .content h1 {
        font-size: 2rem;
        margin-bottom: 20px;
      }

      .btn {
        font-size: 1rem;
        padding: 10px 22px;
      }
    }

    @media (max-width: 480px) {
      .content h1 {
        font-size: 1.5rem;
      }

      .btn {
        font-size: 0.95rem;
        padding: 8px 18px;
      }
    }
    .sec-h2{
        margin-top: 60px;
        text-align: center;
        font-size: 40px;
    }
        .container {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 30px;
    }

        .box {
      border: 1px solid #ccc;
      background-color: #fff;
      overflow: hidden;
      width: 30%;
      min-width: 280px;
      max-width: 100%;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .box:hover {
      transform: translateY(-5px);
    }

    .box img {
      width: 100%;
      height: auto;
      display: block;
      padding: 10px;
    }

    .box h3 {
      font-size: 25px;
      padding: 10px;
      color: #ffffff;
      background-color:  #474747;
  
    }

    .box a {
      display: inline-block;
      margin-bottom: 20px;
      padding: 10px 20px;
      background-color: #2196f3;
      color: white;
      text-decoration: none;
      border-radius: 4px;
      transition: background 0.3s;
    }

    .box a:hover {
      background-color: white;
      border: 2px solid black;
      color: #303030;
    }

    @media (max-width: 768px) {
      .box {
        width: 45%;
      }
    }

    @media (max-width: 480px) {
      .box {
        width: 100%;
      }
    }
  .con-2-h2{
    margin-top: 80px;
    text-align: center;
    background-color: #e7e7e7;
    padding-top: 30px;
    font-size: 30px;

  }
        .con-2-h2{
    text-align: center;
    background-color: #474747;
    padding: 20px;
    font-size: 30px;
    color: #fff;
        }


   .container-2 {
    background-color: #e7e7e7;
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      padding: 30px;
    }
    .box1{
     border: 1px solid #ccc;
      background-color: #fff;
      overflow: hidden;
      width: 22%;
      min-width: 200px;
      max-width: 100%;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
      
      padding: 20px;
       transition:transform .8s ease, opacity .3s ease;
      /* ← initial hidden state */
      opacity:0;
      transform:translateY(32px);

      
    }
    .box1:hover{
      border: 2px solid black;
      
    }
        .box1.show:hover{
      transform:translateY(-6px);
      box-shadow:0 8px 18px rgba(0,0,0,.12);
    }

    /* ---------- Visible state ---------- */
    .box1.show{
      opacity:1;
      transform:translateY(0);
    }

     .box1 img {
      width: 100%;
      height: auto;
      display: block;
      padding: 10px;
    }
    .box1 h3{
      text-align: center;
      text-transform: uppercase;
      font-size:16px;
      }

          @media (max-width: 768px) {
      .box1 {
        width: 45%;
      }
    }

    @media (max-width: 480px) {
      .box1 {
        width: 100%;
      }
    }

        .slider {
      overflow: hidden;
      background: #fff;
      padding: 20px 0;
      margin-top: 60px;
    }

    .slider-track {
      display: flex;
      width: calc(250px * 10); /* 10 logos */
      animation: scroll 20s linear infinite;
    }

    .slide {
      width: 250px;
      flex-shrink: 0;
      padding: 0 10px;
    }

    .slide img {
      width: 70%;
      height: auto;
      object-fit: contain;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .slide {
        width: 150px;
      }
    }

    @media (max-width: 480px) {
      .slide {
        width: 100px;
      }
    }

/* ========= card wrapper ========= */
.hero-card{
  display:flex;
   flex-wrap:wrap;
  background-color: #e7e7e7;
  color: #333;
  border-radius:24px;
  overflow:visible;                 /* 1️⃣  allow spill‑out  */
  position:relative;                /* 2️⃣  lets abs‑pos children anchor */
  max-width:1300px;
   width:100%;
  box-shadow:0 6px 15px rgba(0,0,0,.18);
  align-items: center;
  padding: 35px;
  margin-left: 110px;
  margin-top: 80px;
}

/* ========= content (left) ========= */
.content{ 
  flex:1 1 380px; 
  padding:3rem 2.5rem;
  
 }
 .content h1{
  font-size: 40px;
 } 
 .cta-btn{
  background-color: #303030;
  color: white;
  padding: 12px 13px;
  margin-top: 10px;

 }
 .cta-btn:hover{
  background-color: #ffffff;
  border: 2px solid black;
  color: black;
 }


/* ========= image wrapper (right) ========= */
.img-wrap{
  flex:1 1 320px;
  transform:translateX(60px);       /* 3️⃣  push whole wrapper right  */
  clip-path:polygon(px 0,100% 0,100% 100%,24px 100%);
  /* polygon trims only the left edge so rounded corner stays; right edge is free */
}

/* inner image keeps previous zoom‑hover */
.img-wrap img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .4s ease; transform-origin:center;
  margin-top: -70px;
  padding-right: 30px;
}
.img-wrap:hover img
{
   transform:scale(1.12); 
}


/* ========= responsive breakpoint ========= */
@media(max-width:768px){
  .hero-card{ flex-direction:column; }
  .content{ text-align:center; }
  .img-wrap{ transform:none;        /* don’t overspill small screens */ }
}



       footer {
      background-color: #090909;
      color: #fff;
      padding: 40px 20px;
      margin-top: 60px;

    }

    .footer-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 100%;
      padding:30px;
    }

    .footer-column {
      flex: 1;
      min-width: 200px;
      margin: 10px;
      padding-left:70px;
    
      

    }

    .footer-column h3 {
      margin-bottom: 20px;
      font-size: 25px;
     
      padding-bottom: 5px;
    }
    .footer-column p { 
      
     width:250px;
     line-height:1.5;
}
      
      .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-column ul li a:hover {
      color: #fff;
    }

    .social-icons a {
      display: inline-block;
      margin-right: 10px;
      color: #ffffff;
      font-size: 20px;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #fff;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 20px;
      font-size: 14px;
      color: #888;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-column {
        margin: 20px 0;
      }
    }




    




