.text-black{
  color: black;
}
.text-orange{
  color: #FF993B;
}
.bg-black{
  background: black;
}

.bg-orange{
  background: #FF993B;
}

.content {
  position: absolute;
  top: 100px;
  color: white;
  font-family: sans-serif;
  font-weight: 800;
  text-wrap: nowrap;
  text-align: center;
  
}

.content>p{
  text-shadow: 1px 1px 8px orangered;
  font-size: 5vw;
}

.heading_2{
  font-size: 4vw;
  font-weight: 800;
}

.section_4{
  transition: 1s;
  background: white;
  color: black;
  

}

.section_4:hover{
  transform: scale(1.1);
  background: #FF993B;
  color: black;
}

.section_4_heading{
  text-align: center;
  font-weight: bolder;
  color: #FF993B;
}

.section_4:hover .section_4_heading{
  color: black;
}

.section_4:hover p{
  color: white;
}

.image-container {
  width: 25vw;
  height: 20vw;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.image-container img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.image-container:hover img {
  transform: scale(1.1);
}

@media only screen and (max-width: 600px){
  .image-container {
    width: 100vw;
    height: 70vw;
  } 
  .image-container img {
    border-radius: 15px;
  }
}



.services_img{
  width: 18vw;
  height: 25vw;
  border-radius: 15px;
  transition: 1s;
}

.services_img:hover{
  transform: scale(1.1);
}

@media only screen and (max-width: 600px) {
  .services_img{
    width: 75vw;
    height: 100vw;
  }
}



/* about us page css */

.about{
  position: absolute;
  top: 100px;
  left: 100px;
}

.about_heading{
  text-shadow: 1px 1px 8px orangered;
  font-size: 5vm;
}

.about_iframe{
  filter: brightness(0.5);
}

@media only screen and (max-width: 600px){
  .about{
    position: static;
    background-color: black;
    padding: 10px;
  }
  .about_heading{
    font-size: 2rem;
  }
}

.project{
  position: absolute;
  top: 100px;
  left: 100px;
}

.project_heading{
  text-shadow: 1px 1px 8px orangered;
  font-size: 5vm;
}

.project-image-container {
  width: 25vw;
  height: 20vw;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.project-image-container img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}

.project-image-container:hover img {
  transform: scale(1.1);
}

@media only screen and (max-width: 600px){
  .project{
    position: absolute;
    top: 60px;
    left: 0;
  }
  .project-images{
    width: 25vw;
    height: 20vw;
  }

  .project-image-container {
    width: 100vw;
    height: 60vw;
  }
}

/* left to right animation */

@keyframes rightToLeft {
  0% {
    opacity: 0;
    transform: translateX(600px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* right to left animation */

@keyframes leftToRight {
  0% {
    opacity: 0;
    transform: translateX(-600);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


.contact-backgorund{
  width: 100%;
  height: 585px;
}

.contact-container{
  position: absolute;
  bottom: 0;
  left: 100px;
}

@media only screen and (max-width: 600px){
  .contact-container{
    position: absolute;
    top: 2%;
    left: 0px;
  }
}

      /* Custom CSS for the offcanvas */
      .offcanvas-collapse {
        position: fixed;
        top: 56px; /* Adjust this value according to your navbar height */
        bottom: 0;
        right: 100%;
        width: 80%; /* Adjust this value according to your preference */
        padding-top: 3.5rem; /* Adjust this value according to your navbar height */
        overflow-y: auto;
        background-color: #343a40; /* Adjust this value according to your preference */
        transition: transform 0.3s ease-in-out;
      }
  
      .offcanvas-collapse.open {
        transform: translateX(50%);
      }
