* {
    box-sizing: border-box;
  }
  
      /* Navbar Styles */
      .navbar {
        display: flex;
        align-items: center;
        background-color: #29292b; 
        padding: 10px 16px;
        height: 50px;
        width: 100%;
      }
  
      .back-arrow {
        font-size: 24px;
        color: #fff;
        cursor: pointer;
        text-decoration: none;
        margin-top: -5px;
      }
  
      .back-arrow:hover {
        color: #ddd;
      }
  
      /* Responsive Design */
      @media (max-width: 600px) {
        .navbar {
          padding: 8px 12px;
        }
  
        .back-arrow {
          font-size: 20px;
        }
      }

      /* car animation */
      .text-center {
        text-align: center;
      }
    
      .img-fluid {
        max-width: 100%;
        height: auto;
        opacity: 0; /* Start with the image hidden */
        transform: translateY(-50px); /* Start above its final position */
        animation: dropIn 1s ease-out forwards; /* Animation applied */
      
      }
    
      @keyframes dropIn {
        0% {
          opacity: 0;
          transform: translateY(-50px); /* Initial position */
        }
        100% {
          opacity: 1;
          transform: translateY(0); /* Final position */
        }
      }
/* Scroll Reveal Animation CSS */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s ease-in-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

  .content-container{
    margin-right: 10%;
    margin-left: 10%;
    font-size: 1.3rem;
    text-align: justify;
  }
  .heading{
    font-weight: bold;
    font-size: 1.7rem;
  }
 ul p{
    font-weight: bold;
    display: inline;
  }
  .phone-icon{
    font-size: 2.5rem;
    margin-left: 16%;
    color: blue;
  }
  .whatsapp-icon{
    font-size: 3.2rem;
    margin-left: 50%;
    color: #06f416;
  }
  /* Responsive styles */
  @media screen and (max-width: 1440px) and (min-width: 1025px) {
    .phone-icon {
      display: none;
    }
    .whatsapp-icon {
      display: none;
    }
  }
  @media screen and (max-width: 1024px) and (min-width: 768px) {
    .phone-icon {
      display: none;
    }
    .whatsapp-icon {
      display: none;
    }
  }
  @media screen and (max-width: 425px) {
    .content-container{
      margin-right: 9%;
      margin-left: 9%;
   }
    .heading{
      font-weight: bold;
      font-size: 1.5rem;
    }
  }
  @media screen and (max-width: 375px) {
    .content-container{
      margin-right: 8%;
      margin-left: 8%;
   }
  }


/* Footer Styles */
footer {
  background-color: #262728;
  color: #ffffff;
  padding: 15px 0; /* Reduced padding to 10px */

}

footer a {
  color: #ffffff;
  text-decoration: none;
}

footer .fa {
  margin-right: 5px;
}

/* Apply different text size for the footer */
footer p, footer a {
  font-size: 1.2rem; /* Smaller font size in footer */
}

/* Apply smaller font size for footer text */
footer h5 {
  font-size: 20px;
}

/* Responsive Text Adjustment */
@media (max-width: 768px) {
  footer .container {
      text-align: center;
  }
  footer .row {
      flex-direction: column;
      align-items: center;
  }
  footer .col-md-4 {
      margin-bottom: 15px;
  }
  footer .text-center {
      text-align: center;
  }
}


    
/* side social icons code */
.fixed-bottom-right {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; /* Space between icons */
  z-index: 1000; /* Ensure it appears on top of other content */
}

/* General Icon Styles */
.icon {
  font-size: 25px; /* Size of the icon */
  color: white;
  width: 45px;
  height: 45px;
  background-color: #0875fa; /* Background for icons */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Makes the icon circular */
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effects for Icons */
.icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Icon Specific Style */
.whatsapp-icons {
  background-color: #25D366; /* WhatsApp green */
  color: white;
}

/* Email Icon Specific Style */
.email-icons {
  background-color: #007bff; 
  color: white;
}

/* icons code over */