* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}

header {
  width: 100%;
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 80px;
}
header .div {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
header a,
button {
  color: white;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  gap: 5px;
}
header button {
  padding: 10px 20px;
  background-color: #da1f26;
  border: none;
  border-radius: 5px;
}

@media (max-width: 880px) {
  header {
    flex-direction: column;
    gap: 20px;
  }

  .flex {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .right {
    margin: 0 20px;
  }
  
}
@media (max-width: 322px) {
  .right {
    width: 250px;
    height: max-content;
  }
  .img-boxes div img {
    width: 200px;
  }
}

.container {
  max-width: 1225px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.logo img {
    height: 60px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-options {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-options a {
    color: black;
    text-decoration: none;
}

.nav-options i {
    font-size: 28px;
}

.hamburger {
    display: none;
    cursor: pointer;
}
.div{
    display: flex;
    justify-content: center;

}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        background-color: #da1f26;
        display: block; /* Show hamburger on smaller screens */
        padding: 10px; /* Adjust padding for better touch responsiveness */
        border-radius: 5px; /* Optional: Add border radius for a rounded button */
    }
    /*.fa-phone{*/
    /*    display: none;*/
    /*}*/
    .call-button{
        display: none;
    }
    .nav-options {
        display: none;
        position: absolute;
        top: 0;
        height: 100vh;
        margin-left: -50px;
        margin-top: -20px;
        background-color: white;
        padding: 20px 40px;
        text-align: center;
        animation: run .5s ease;
        z-index: 1000;
        box-shadow: 5px 1px 9px -7px rgba(0,0,0,0.75);

    }
    .nav-options a{
        color: black;
    }

      
    .nav-options.active {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .bar.active:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .bar.active:nth-child(2) {
        opacity: 0;
    }

    .bar.active:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}   
@keyframes run {
    0% {
      left: -100%;
    }
    100% {
      left: 0;    
    }
  }       
.hero {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 800px;
}

.left img {
  width: 100%;
  height: auto;
}
.left button {
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  background: #da1f26;
}


.right {
  max-width: 400px;
  height: auto;
  text-align: center;
  background: linear-gradient(
    0deg,
    rgba(2, 0, 36, 1) 30%,
    rgba(9, 9, 121, 1) 61%,
    rgba(0, 212, 255, 1) 100%
  );
  padding: 20px 10px;
  border-radius: 20px;
  color: white;
}

.right p {
  font-size: 20px;
  margin: 10px 0 25px 0;
}

.right form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.right form input {
  padding: 10px;
  border-radius: 3px;
  border: none;
  font-size: 18px;
}

.right form textarea {
  height: 70px;
  padding: 10px;
  font-size: 18px;
  border-radius: 3px;
}

.right form button {
  padding: 15px 50px;
  border-radius: 40px;
  margin: 5px 70px;
  background-color: #da1f26;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-bottom {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}
.right-bottom p {
  font-size: 10px;
}

.right-bottom span {
  font-size: 10px;
  color: #a4a4a4;
}

.company {
  display: flex;
  margin-top: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
@media (max-width: 880px) {
  .company {
    justify-content: center;
  }
  .near {
    padding: 0 20px;
    text-align: center;
  }
}
.company img {
  height: 90px;
  width: 280px;
  border-radius: 5px;
}
.near {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}
.near-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 500px;
}
.near-right {
  max-width: 600px;
  height: auto;
  text-align: center;
  border-radius: 20px;
}
.near-left h1 {
  font-size: 38px;
  color: red;
}
.divider {
  height: 3px;
  margin: 0 60px;
  background-color: black;
}
.near-left p {
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 200;
  line-height: 20px;
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: black;
}
.button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
button {
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  background-color: #da1f26;
}
.heading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: red;
  margin-bottom: 30px;
  text-align: center;
}
.img-boxes {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 880px) {
  .img-boxes div img {
    height: 280px;
  }
  .container {
    margin: 20px;
  }
}
.img-boxes img {
  height: 350px;
}
.last {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.last p {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.faq-container {
  width: 100%;
  margin: 0 auto;
}
.faq {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding-top: 10px;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding-top 0.5s ease;
}
.icon {
  font-size: 18px;
  transition: transform 0.3s;
}
.icon.rotate {
  transform: rotate(45deg);
}
.faq-section {
  width: 100%;
  display: flex;
  flex-direction: column;
}
footer .bgimg {
  width: 100%;
  height: 230px;
  object-position: center;
  object-fit: cover;
}
.overlay {
  background: black;
  opacity: 0.8;
  z-index: 999;
  width: 100%;
  height: 230px;
  position: absolute;
}
.content {
  position: absolute;
  z-index: 9999;
  color: #da1f26;
  width: 100%;
  height: 230px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.footer-bottom {
  background-color: black;
  margin: -10px auto;
  color: white;
  
}

#footer-btm {
  display: flex;
  justify-content: center;
  padding-top: 50px;
  gap: 15px;
  flex-wrap: wrap;
  height: 100%;
}

#footer-btm div {
  width: 290px;
  line-height: 30px;
}
#copyright{
  display: flex;
  justify-content: space-between;
}

iframe {
  width: 300px;
  height: 300px;
}
#btm-heading{
    margin-bottom: 10px;
}


@media (max-width: 880px) {
  iframe {
    width: 100%;
    height: 200px;
  }
    #copyright{
    flex-direction: column;
    text-align: center;
    }

  #footer-btm div {
    width: 100%;
    padding: 10px;
  }

 

  #footer-btm {
    flex-direction: column;
    gap: 20px;
  }
  .four-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.phoneMe i{
    position: fixed;
    right: 0px;
    bottom: 10px;
    left: 10px;
    border-radius: 50%;
    background-color:rgb(40, 209, 40);
    border: none;
    color: white;
    width: 55px;
    padding: 15px ;
    font-size: 25px;
    cursor: pointer;
    text-decoration: none;
z-index: 10000;
}
.phoneMe  p,.phoneMe2  p{
    display:none;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition:1s;
}
.phoneMe  p{
    position: fixed;
    right: 0px;
    bottom: 10px;
    left: 40px;
        color: #fff;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
z-index: 10;
background-color:rgb(40, 209, 40);
width: 150px;
    padding: 20px 0px;
font-weight:600;
text-align:center;
}
.phoneMe:hover P,.phoneMe2:hover P{
    display:inherit;
    
}
.phoneMe2 i{
    

position: fixed;

bottom: 10px;
padding: 15px;
right: 22px;
background-color: #25d366;
color: #FFF;
border-radius: 50%;
text-align: center;
font-size: 30px;
z-index: 100;


}
.phoneMe2  P{
    position: fixed;
bottom: 10px;
right: 55px;
color: #fff;
    font-size: 18px;
text-align: center;
font-size: 14px;
z-index: 10;
background-color:#25d366;
width: 150px;
    padding: 20px 0px;
font-weight:600;
}
