* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  body, html {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
  }
  .hero {
    position: relative;
    height: 100vh; 
    width: 100%;
    overflow: hidden;
  }

  .hero img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
  header {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    padding: 0px 35px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: rgba(0,0,0,0.1); 
    z-index: 1000; 
  }

  header .logo img {
    height: 90px;
    width: 96%;
  }

  header .btn {
    padding: 16px 20px;
    background: rgb(174, 174, 192);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    font-size: 15px;
  }
  header .btn:hover {
    background: #e65c00;
  }
  .consultation-form {
    width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: absolute;
    top: 120px;  
    right: 40px;
  }
  .consultation-form h3 {
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: bold;
  }
  .consultation-form input,
  .consultation-form select {
    width: 100%;
    padding: 18px;
    margin: 8px 0;
    margin-bottom: 7px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
  }
  .consultation-form button {
    background: #575764;
    color: #fff;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;

  }
  .consultation-form button:hover {
    background: blue;
  }
  .consultation-form .privacy {
    font-size: 13px;
    margin-top: 20px;
    color: #555;
  }

.popup {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  left: 0; 
  top: 0; 
  width: 100%; 
  height: 100%; 
  overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
  backdrop-filter: blur(6px); 
  -webkit-backdrop-filter: blur(6px); 

}
.hero-content{
  position: absolute;
 margin-top: -39%;
    padding: 8px 78px;
}
.multi-calc-section {
    padding: 10px 20px;
    background: #f4f6fb;
    text-align: center;
    font-family: Arial, sans-serif;
    border-radius: 15px;

}

.calc-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.calc-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background: #ddd;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
  font-weight: bold;
}

.tab-btn.active {
  background: #007bff;
  color: #fff;
}

.calc-content {
     display: none;
    max-width: 400px;
    margin: auto;
    /* background: #fff; */
    padding: 0px;
    border-radius: 12px;
    /* box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1); */
    text-align: left;

}

.calc-content.active {
  display: block;
}

.calc-content label {
  font-weight: 600;
  display: block;
  margin: 10px 0 5px;
  color: #333;
}

.calc-content input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 15px;
}

.calc-content button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #007bff;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.calc-content button:hover {
  background: #0056b3;
}

.popup-content {
  margin: 0% auto; 
  padding: 20px;
  border-radius: 12px;
  width: 400px;
  max-width: 90%;
  position: relative;
  animation: fadeIn 0.4s ease-in-out;
}

.close {
     position: absolute;
    right: 10px;
    top: 65px;
    font-size: 42px;
    font-weight: bold;
    cursor: pointer;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}




/* Project Section */
.project-section {
  position: relative;
  margin-top: -52px; 

}

.project-grid {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.project-item {
  position: relative;
  width: 26%;
  overflow: hidden;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  background: #fff;
}

.project-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.project-item:hover img {
  transform: scale(1.1);
}

.icon-circle {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffcc00;
  color: #333;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  transition: 0.3s;
}
.project-item:hover .icon-circle {
  background: #ff9900;
  color: white;
}

.project-title {
  margin: 0;
  padding: 30px;
  background: #e9dddd;
  color: black;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.services-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin: 0px 10%;

}

.service-item {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
  position: relative;
      width: 100%;

}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
}

.service-icon {
  font-size: 40px;
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background: #f1f1ee;
  color: #222;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.service-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.why-IronBeam{
  padding: 30px 80px;
}

.ironbeam{
  display: flex;
  gap:2rem;
  margin-top: 50px;
  height:40vh;
}

.whyus{
     padding: 10px;
    width: 90%;
    /* height: 38vh; */
    border: 1px solid black;
    text-align: center;
    transition: transform 0.3s ease;
}
.whyus:hover {
  transform: translateY(-10px);
}
.why-IronBeam h2{
          font-size: 40px;
        margin-top: 20px;
        margin-bottom: 20px;
}
.why{
      font-size: 18px;
}

.why-title{
      font-size: 22px;
    margin-bottom: 5px;
    color: #555;
}
.why-para {
    color: black;
    font-size: 16px;
    margin-top: 13px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.how-it-works {
  text-align: center;
  padding: 50px 20px;
  background: #fdf7f6;
}

.steps-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 30px;
  position: relative;
      margin-top: 40px;
}

.step {
  cursor: pointer;
  text-align: center;
  position: relative;
}

.step .circle {
  width: 40px;
  height: 40px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 auto;
  line-height: 40px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.step .circle.active {
  background: black;
  color: white;
}

.step p {
  margin-top: 10px;
  font-size: 16px;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
     left: 88%;
    width: 62px;
    height: 3px;
  background: #ccc;
  transition: background 0.3s ease;
}
.step-image img {
  width: 300px;
  height: auto;
  transition: all 0.5s ease-in-out;
}
.how-it-works h2{
  margin-bottom: 12px;
  font-size: 30px;
}

/* Packages Section */

.packages-section {
  padding: 35px 50px;
  background: #f5f7fa; 
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: #222;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}
.package-card {
       background: #fff;
    border-radius: 16px;
    padding: 25px;
    width: 930px;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
    margin: 0px 17%;
    margin-bottom: 30px;

}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.15);
}
.package-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #bc7302;
        cursor: pointer;
}

.package-title span {
  font-size: 19px;
  color: #bc7302;
  font-weight: 400;
}
.accordion-item {
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
      padding: 16px 20px;
    font-size: 19px;
  font-weight: 600;
  color: #333;
  background: #f9f9f9;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #eef2ff;
}

.accordion-header .plus {
  font-size: 1.3rem;
  font-weight: bold;
  color: #1e3a8a;
  transition: transform 0.3s ease;
}

.accordion-header.active .plus {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: #fff;
  padding: 0 18px;
  color: #444;
  border-top: 1px solid #eee;
  transition: all 0.4s ease;
}

.accordion-content p {
  font-size: 17px;
  margin: 10px 0;
  line-height: 1.6;
}

.accordion-content.active {
  max-height: 500px;
  opacity: 1;
  padding: 12px 18px 18px;
}


.package-content {
  display: none;
  margin-top: 10px;
}
.package-content.active {
  display: block;
}

.accordion-content {
  display: none;
  padding: 10px;
  background: #f9f9f9;
}
.accordion-content.active {
  display: block;
}






/* key feature */

.features-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 0px 27px;
}

.feature-item {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.feature-item i {
  font-size: 50px;
  color: #f5b400; 
  margin-bottom: 15px;
}

.feature-item h4 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.feature-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
/* footer */

.main-footer {
  color: #fff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  background: #444;
      padding: 35px 45px 20px;
    height: 50vh;
}

 #progress-bar {
  margin-top: 8px;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #ff7b54, #ffb26b);
  border-radius: 2px;
  transition: width 0.3s linear;
}
.get-in-touch{
  margin-top: 27px;
}

.footer-col {
  flex: 1 1 220px;
}
.footer-col img{
     width: 53%;
    height: 22vh;
}
.company-infoo{
      line-height: 1.6;
    font-size: 16px;
}
.company-info img {
  height: 60px;
  margin-bottom: 15px;
}

.company-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}
.contact-infoo{
  margin-top: 27px;
}
.contact-infoo h3{
      font-size: 26px;
    margin-bottom: 22px;
}
.contact-infoo p{
  line-height: 1.4;
    margin-bottom: 18px;
        font-size: 18px;
}
.contact-infoo strong{
      font-size: 20px;
}

.quick-links h3 {
    color: white;
    margin: 0px 85px;
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: 26px;
}

.quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0px 85px;
    font-size: 18px;
    color: white;
}

.quick-links ul li {
     margin-bottom: 16px;
    font-size: 20px;
}

.quick-links ul li a {
  color: white;
  text-decoration: none;
}

.quick-links ul li a:hover {
  color: #fd671a;
  text-decoration: underline;
}

.social-icons {
  margin-top: 15px;
      padding: 0px 40px;

}
.social-icons i{
  font-size: 28px;
}

.social-icons a {
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fd671a;
}

.contact-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-bottom {
     text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: white;
    font-size: 18px;
    background: #444;
    height: 12vh;
}

/* Get in Touch Form */
.get-in-touch h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: white;
}

.footer-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
}

.footer-form button {
  background: transparent;
  color: white;
  padding: 12px;
  border: 2px solid white;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}

.footer-form button:hover {
  background: #fd671a;
  border-color: #fd671a;
}

.form-note {
  font-size: 13px;
  margin-top: 12px;
  color: #bbb;
  line-height: 1.4;
}


.social-round {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.social-round a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.social-round a:hover {
  background: #fd671a;
  border-color: #fd671a;
}

/* our project */

/* .projectt-section {
  padding: 56px 8%;
  background: linear-gradient(180deg, #f9fbfd, #eef2f6);
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-titleee {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1a2a44;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitleee {
    font-size: 21px;
    color: #666;
    margin-bottom: 27px;
}

.project-gallery {
  max-width: 1000px;
  margin: 0 auto;
}

.main-image {
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: 0 auto 25px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
 
}

.main-image img {
   width: 47%;
  height: 100%;
      margin-top: 8px;
  object-fit: contain;
  transition: opacity 0.5s ease-in-out; 
  border-radius: 20px;
}

.main-image img:hover {
  transform: scale(1.03);  
}

.thumbnail-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.thumbnail-row img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.85;
  transition: transform 0.3s, opacity 0.3s, box-shadow 0.3s;
}

.thumbnail-row img:hover {
  transform: scale(1.1);
  opacity: 1;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.thumbnail-row img.active {
  border: 3px solid #007bff;
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0,123,255,0.4);
}

.project-info {
  text-align: center;
}

.project-name {
     font-size: 33px;
    border: 1px solid #ccc;
    font-weight: 700;
    color: #1a2a44;
    margin-top: 15px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding: 12px;
    border-radius: 19px;
    width: 61%;
    margin: 0px 17%;
    margin-top: 31px;
    background: #c1c1db;
}

.project-desc {
  font-size: 16px;
  color: #555;
  max-width: 750px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.lightbox img.loaded {
  opacity: 1;
}
 */


.projectt-section {
  padding: 25px 20px;
  background: linear-gradient(to bottom right, #f4f6fb, #ffffff);
}

.project-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.project-details {
  flex: 1;
  min-width: 300px;
      margin-top: 12%;

}

.section-titlee {
    font-size: 40px;
    /* font-weight: 700; */
    margin-bottom: 10px;
    /* color: #222; */
    text-align: center;
}

.section-subtitlle {
    font-size: 19px;
    color: #877d7d;
    margin-bottom: 46px;
    text-align: center;
}


.project-name {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #007bff;
}

.project-desc {
     font-size: 20px;
    line-height: 1.6;
    color: #444;
    font-family: times roman;
}

/* Gallery */
.project-gallery {
  flex: 1;
  min-width: 350px;
  display: flex;
  gap: 15px;
}

.main-image {
  flex: 3;
}

.main-image img {
  width: 100%;
  height: 450px;
  /* object-fit: cover; */
  border-radius: 12px;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.main-image img:hover {
  transform: scale(1.03);
}

.thumbnail-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumbnail-column img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.8;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail-column img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.thumbnail-column img.active {
  border: 2px solid #007bff;
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.5);
}

/* Responsive */
@media(max-width: 768px) {
  .project-wrapper {
    flex-direction: column;
  }

  .project-gallery {
    flex-direction: column;
  }

  .thumbnail-column {
    flex-direction: row;
    justify-content: center;
  }

  .thumbnail-column img {
    width: 80px;
    height: 70px;
  }
}




/* Why Choose Us Section */
.why-choose-us {
     padding: 40px 20px 60px;
  background: #f8f9fa; 
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #222;
}

.why-choose-us p.section-subtitle {
  max-width: 700px;
  margin: 0 auto 50px auto;
  color: #555;
  font-size: 1.1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.why-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.why-item i {
  font-size: 40px;
  color: #007bff; 
  margin-bottom: 15px;
}

.why-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.why-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}
.choose-grid {
    display: flex;
    padding: 0px 3%;
    gap: 1%;
}
.choose-item{
  border:1px solid;
  padding: 15px;
      transition: 0.3s ease;
}
.choose-item i{
  font-size: 30px;
}
.choose-item h3{
  margin-top: 5px;
    margin-bottom: 5px;
    font-size: 24px;
    color: brown;
}
.choose-item p{
  font-size: 17px;
    margin-top: 9px;
    margin-bottom: 10px;
}

.choose-item:hover{
  transform: translateY(-3px);
}

/* Safety & Compliance Section */
.safety-section {
  padding: 80px 20px;
  background: #595d6280;
  color: #fff;
  text-align: center;
      margin-bottom: 20px;
}

.safety-section .section-title {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #64ffda; 
}

.safety-section .section-subtitle {
  font-size: 16px;
  color: #ccd6f6;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.safety-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  position: relative;
}

.safety-item {
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
  position: relative;
}

.safety-item i {
  font-size: 50px;
  background: #112240;
  color: #64ffda;
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.safety-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #e6f1ff;
}
.safety-item p {
    font-size: 17px;
    color: black;
  line-height: 1.6;
}
.safety-item i:hover {
  transform: rotate(15deg) scale(1.1);
}

.company-infoo p{
      margin-top: 32px;
    font-size: 16px;
    text-align: justify;
    margin-bottom: 42px;
}
.fas{
      margin-right: 5px;
    font-size: 26px;
}


@media(max-width:768px){
  header .logo img {
    height: 71px;
    width: 95%;
}
  header {
    padding: 0px 10px;
  }
  .hero {
    height: 103vh;
  }
  .project-grid {
    flex-direction: column;
    padding: 0px 45px;

  }
  .project-item {
    width: 100%;
  }
  .project-item img {
    height: 26vh;
  }
  .icon-circle {
    bottom: 70px;
  }
  .section-title {
    font-size: 22px;
  }
  .services-section {
    padding: 30px 20px;
  }
  
.services-grid {
    gap: 25px;
    margin: 0px 0%;
}
.why-IronBeam {
    padding: 10px 20px;
}
.why-IronBeam h2 {
    font-size: 30px;
    margin-top: 5px;
    margin-bottom: 15px;
}
.why {
    font-size: 16px;
}
.ironbeam {
  flex-direction: column;
    gap: 2rem;
    margin-top: 20px;
    height: 145vh;
}
.whyus {
    padding: 0px;
    width: 100%;
}
.how-it-works {
    padding: 25px 20px;
}
.steps {
  flex-direction: column;
      gap: 25px;
    margin-top: 25px;
}
.step:not(:last-child)::after {
  display: none;
}
.packages-section {
    padding: 40px 25px 55px;
}
.features-section {
    padding: 40px 20px;
}
.features-grid {
    margin: 0px 0px;
}
.app-progress-section {
    padding: 30px 12px;
}
.app-text-box {
    padding: 20px;
}
.app-image-box {
    min-height: 200px;
}
.why-choose-us {
    padding: 45px 20px;
}
.why-choose-us h2 {
    font-size: 35px;
    margin-bottom: 8px;
    color: #222;
}
.choose-grid {
  flex-direction: column;
}
.why-choose-us p.section-subtitle {
    margin: 0 auto 20px auto;
}
.faq-section {
    margin: 25px 20px;
}
.faq-section h2 {
    margin-bottom: 25px;
    font-size: 25px;
}
.faq-question {
    font-size: 16px;
    padding: 0px 10px;
}
.footer-container {
    gap: 0px;
    padding: 30px 17px 0px;
    height: 120vh;
}
.social-icons {
    padding: 0px 0px;
}
.footer-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
}
.quick-links h3 {
    margin: 0px 0px;
    margin-top: 0px;
    margin-bottom: 25px;
    font-size: 30px;
    text-align: left;
}
.quick-links ul {
      margin: 0px 0px;
    list-style: none;
    padding: 0px 4px;
    text-align: left;
    font-size: 26px;
    color: white;
}
.contact-infoo {
    margin-top: 0px;
}
.consultation-form {
    width: 320px;
    right: 35px;
}
.package-card {
    width: 340px;
    margin: 40px 0%;
}

.package-title {
    font-size: 20px;
  }
  .project-section {
    padding: 46px 0%;
    display: none;
  }
  .section-subtitlle {
    font-size: 19px;
    color: #877d7d;
    margin-bottom: 0px;
  }
  .main-image img {
    width: 89%;
    height: 67%;
  }
  .main-image {
    height: auto;
  }
  .project-name {
    font-size: 25px;
    width: 88%;
    margin: 0px 7%;
   
}

.hero-content {
    position: relative;
    padding: 8px 28px;
}
}