<style>
 body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #F53803 #F5D020;
        }
  
  /* Navigation styles */
 
  
  .navbar-brand {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
  }
  
  .navbar-nav .nav-link {
    color: #fff;
    font-size: 1.1rem;
    margin-left: 20px;
    text-transform: uppercase;
  }
  
  /* Hero section styles */
  #home {
    background-color: #f9f9f9;
    color: #333;
    padding: 100px 0;
    padding: 15px 0;
  }
  
  #home h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  #home p {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
  
  /* Feature section styles */
  #features {
    padding: 80px 0;
  }
  
  #features h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #000000;
    
  }
  .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }
  
  .card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .card-body {
    text-align: center;
  }
  
  .card-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .card-text {
    font-size: 1.2rem;
    color: #666;
  }
  
  /* Pricing section styles */
  #pricing {
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  
  #pricing h2 {
    color: #000000;
    margin-bottom: 40px;
  }
  
  .pricing-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    padding: 30px 20px;
  }
  
  .pricing-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .pricing-card h5 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }
  
  .pricing-card p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
  }
  
  /* Contact section styles */
  #contact {
    padding: 80px 0;
  }
  
  #contact h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #000000;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-control {
    padding: 15px;
    border-radius: 5px;
  }
  
  .btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
    cursor: pointer;
  }
  /* Mobile responsiveness */
  @media only screen and (max-width: 767px) {
    /* Adjust font sizes for smaller screens */
    header .navbar-brand {
      font-size: 1.5rem;
    }
    
    .navbar-nav .nav-link {
      font-size: 1rem;
      margin-left: 10px;
    }
    
    #home h1 {
      font-size: 2.5rem;
    }
    
    #home p {
      font-size: 1.1rem;
    }
    
    #features h2 {
      font-size: 2.5rem;
    }
    
    .card-title {
      font-size: 1.5rem;
    }
    
    .card-text {
      font-size: 1rem;
    }
    
    #pricing h2 {
      font-size: 2.5rem;
    }
    
    .pricing-card h5 {
      font-size: 1.5rem;
    }
    
    .pricing-card p {
      font-size: 1rem;
    }
    
    #contact h2 {
      font-size: 2.5rem;
    }
  }
/* Mobile responsiveness */
@media only screen and (max-width: 767px) {
  /* Adjust font sizes for smaller screens */
  header .navbar-brand {
    font-size: 1.5rem;
  }
  
  .navbar-nav .nav-link {
    font-size: 1rem;
    margin-left: 10px;
  }
  
  #home h1 {
    font-size: 2.5rem;
  }
  
  #home p {
    font-size: 1.1rem;
  }
  
  #features h2 {
    font-size: 2.5rem;
  }
  
  .card-title {
    font-size: 1.5rem;
  }
  
  .card-text {
    font-size: 1rem;
  }
  
  #pricing h2 {
    font-size: 2.5rem;
  }
  
  .pricing-card h5 {
    font-size: 1.5rem;
  }
  
  .pricing-card p {
    font-size: 1rem;
  }
  
  #contact h2 {
    font-size: 2.5rem;
  }
}

  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-icon img {
    width: 50px;
    height: 50px;
  }

  .whatsapp-label {
    font-size: 15px;
    font-weight: bold;
    color: #000000;
    margin-top: -40px;
    line-height: 1;
  }

  /* Media query for small screens (mobile devices) */
  @media screen and (max-width: 768px) {
    .whatsapp-float {
      bottom: 15px;
      right: 15px;
    }

    .whatsapp-icon img {
      width: 45px;  /* Slightly smaller icon for mobile */
      height: 45px;
    }

    .whatsapp-label {
      font-size: 11px;  /* Slightly smaller text for mobile */
      margin-top: -5px;  /* Maintaining the same negative margin */
    }
  }

  /* Media query for extra small screens */
  @media screen and (max-width: 480px) {
    .whatsapp-float {
      bottom: 10px;
      right: 10px;
    }

    .whatsapp-icon img {
      width: 40px;  /* Even smaller icon for very small screens */
      height: 40px;
    }

    .whatsapp-label {
      font-size: 10px;
      margin-top: -60px;  /* Maintaining the same negative margin */
    }
  }
  .responsive-logo {
  max-width: 120px; /* Increase this value to enlarge */
  height: auto;
  margin-top: -7px;
}

 .social-links a {
  font-size: 20px;
  transition: all 0.3s ease;
  margin-right: 0; /* Remove the margin between the icons */
}

.social-links a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* Make icons larger on mobile */
@media (max-width: 768px) {
  .social-links a {
    font-size: 24px;
    margin-right: 0; /* Remove the margin on mobile as well */
  }
}
.social-links {
  list-style-type: none; /* Remove list bullet points */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
}

.social-links a {
  font-size: 20px;
  transition: all 0.3s ease;
  margin-right: 0; /* No space between icons */
  text-decoration: none; /* Remove underline */
}

.social-links a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* Make icons larger on mobile */
@media (max-width: 768px) {
  .social-links a {
    font-size: 24px;
  }
}

.feature-card {
  min-height: 350px; /* Sets a minimum height for consistency */
  display: flex;
  flex-direction: column;
}

.feature-card .card-body {
  flex-grow: 1; /* Makes the card body expand to fill height */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distributes content vertically */
}

/* Ensures consistent padding below text */
.feature-card .feature-text {
    margin-bottom: 15px;
}

/* Adjusts min-height for responsiveness on smaller screens */
@media (max-width: 767.98px) {
  .feature-card {
    min-height: auto; /* Allows height to adjust on smaller screens */
  }
}

/* Styles for cards in the Key Feature section */
#features .card {
  min-height: 250px; /* Adjust this height as needed */
  display: flex;
  flex-direction: column;
}

#features .card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribute space vertically */
}

/* Adjust min-height for responsiveness in Key Feature section */
@media (max-width: 767.98px) {
  #features .card {
    min-height: auto; /* Allow height to adjust on smaller screens */
  }
}

/* Styles for cards in the Powerful Features section */
.feature-card {
  min-height: 350px; /* Adjust as needed */
  display: flex;
  flex-direction: column;
}

.feature-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribute space vertically */
}

/* Ensure consistent padding below text even if content is short */
.feature-card .feature-text {
    margin-bottom: 15px; /* Adjust as needed */
}

/* Add responsiveness if not already handled by Bootstrap */
@media (max-width: 767.98px) {
  .feature-card {
    min-height: auto; /* Remove min-height on smaller screens if needed */
  }
}

</style>
