/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    /* overflow: hidden; */
    height: 100%;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    background-image: url('../assets/images/Background_Image.jpeg');
    background-size: cover;
    background-position: center;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.left_logo img{
    margin-left: 50px;
    margin-top: 50px;
    max-width: 200px;
}

.right_logo img{
    margin-right: 50px;
    margin-top: 50px;
    max-width: 100px;
}

.whatsapp_logo{
  bottom: 0;
  left:  0;
}
.whatsapp_logo a img{
    animation: fadeIn 2.5s ease-in-out;
    margin-bottom: 70px;
    margin-left: 50px;
    width: 220px;
}

.call_now {
  
  bottom: 0;
  right: 0;
}
.call_now img{
  animation: fadeIn 2.5s ease-in-out;
    margin-bottom: 70px;
    margin-right: 50px;
    max-width: 220px;
}



  /* Overlay */
  .overlay {
    position: relative;
    z-index: 2;
    color: white;
  }
  
  /* Logo */
  .logo img {
    max-width: 800px;
    width: 50%;
    /* animation: logo 2s linear infinite; */
    animation-iteration-count: 1; 
    animation: fadeIn 2s ease-in-out;
  }
  
  /* Call to Action */
  .cta {
    margin-top: 20px;
  }
  
  .cta-button {
    background: #ff4500;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
    animation: bounce 10s linear forwards;
  }
  
  .contact {
    margin-top: 10px;
  }
  
  /* Social Links */
  .social-links {
    transform: translateY(-228px);
    position: absolute;
    bottom: 10px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .social-links a img {
    width: 35px;
    /* height: 35px; */
  }
  
  /* Responsive Design */
  @media (max-width: 575.98px) { 


    .left_logo img{
  
      max-width: 106px;
  }

    .logo img {
      transform: translateY(30%) !important;
      width: 200px;
    }

    .whatsapp_logo img {
      width: 138px !important;
      margin-bottom: 94px !important;
      margin-left: 24px !important;
    }

    .call_now img {
      width: 135px !important;
      margin-bottom: 90px !important;
      margin-right: 20px !important;
    }
    .social-links {
      transform: translate(-50%, -50%) !important;
      left: 70% !important;
      margin: auto;
      bottom: -120px;
      right: -88px;
      display: flex;
      /* flex-direction: row; */
      gap: 8px;
      align-items: flex-end;
      justify-content: center;
  }

  }
  
  @media (max-width: 767.98px) and (min-width:576px) { 

    .logo img {
      width: 200px;
    }

    .whatsapp_logo img {
      width: 185px !important;
      margin-bottom: 50px !important;
      margin-left: 24px !important;
    }

    .call_now img {
      width: 210px;
      margin-bottom: 50px;
      margin-right: 20px;
    }

  }
    
   
  
  
  /* Animations */

  @keyframes logo {
    0% {
      transform: translateX(280%) rotate(0deg);
    }
    100% {
      transform: translateX(0) rotate(-360deg); /* Centered position */
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
