  /* Keyframes for heading animation (fade-in and slide-up) */
  @keyframes fadeInSlideUp {
      0% {
          opacity: 0;
          transform: translateY(50px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Keyframes for subtitle animation (fade-in with delay) */
  @keyframes fadeIn {
      0% {
          opacity: 0;
      }

      100% {
          opacity: 1;
      }
  }

  /* Keyframes for button animation (zoom-in effect) */
  @keyframes zoomIn {
      0% {
          transform: scale(0.8);
          opacity: 0;
      }

      100% {
          transform: scale(1);
          opacity: 1;
      }
  }

  /* Applying animation to heading */
  .heading {
      font-size: 3rem;
      color: white;
      animation: fadeInSlideUp 1.5s ease-in-out forwards;
  }

  /* Applying animation to subtitle with a delay */
  .subtitle {
      font-size: 1.5rem;
      color: white;
      margin: 20px 0;
      animation: fadeIn 2s ease-in-out forwards;
      animation-delay: 0.5s;
      /* Add delay for smoother transition */
  }

  /* Applying animation to button */
  .btn-custom {
      background-color: #007bff;
      color: white;
      border-radius: 30px;
      padding: 10px 30px;
      font-size: 1.2rem;
      text-decoration: none;
      animation: zoomIn 2.5s ease-in-out forwards;
      animation-delay: 1s;
      /* Delay for button appearance */
  }

  .btn-custom:hover {
      background-color: #0056b3;
      transform: scale(1.1);
  }

  /* Home Automation Section */
  .HomeAutomation {
      position: relative;
      width: 100%;
      height: 100vh;
  }

  /* object-fit: cover; */
  /* .HomeAutomation img {
        width: 100%;
        height: 100%;
       
        transition: opacity 0.8s ease-in-out;
        position: absolute;
    } */


  #automationImg {
      width: 100%;
      height: 100%;
      transition: opacity 0.8s ease-in-out;
      position: absolute;
      display: block;
  }

  #EnquireNowButton {
      position: relative;
      top: 135px;
  }

  #getStartedBtn {
      position: relative;
      top: 135px;
  }

  .SmartHomeAutomation {
      display: block;
  }

  #automationImgFOrMobile {
      width: 100%;
      height: 100%;
      transition: opacity 0.8s ease-in-out;
      position: absolute;
      display: none;
  }

  @media (max-width: 768px) {
      #automationImg {
          display: none;
      }

      .HomeAutomation {
          height: 60vh;
      }

      .SmartHomeAutomation {
          display: none;
      }

      #automationImgFOrMobile {
          width: 100%;
          height: 100%;
          transition: opacity 0.8s ease-in-out;
          position: absolute;
          display: block;
      }
  }

  .content {
      position: absolute;
      top: 50%;
      /* left: 50%; */
      /* top: 29%; */
      left: 63%;
      transform: translate(-50%, -50%);
      text-align: center;
      z-index: 1;
  }

  .content h1 {
      font-size: 3rem;
      /* color: white; */
      color: #00ff01;

  }

  .content p {
      font-size: 1.9rem;
      /* color: white; */
      color: #ffb500;
      margin: 20px 0;
  }

  .btn-custom {
      background-color: #007bff;
      color: white;
      border-radius: 30px;
      padding: 10px 30px;
      font-size: 1.2rem;
      text-decoration: none;
      transition: transform 0.3s ease-in-out;
  }

  .btn-custom:hover {
      background-color: #0056b3;
      transform: scale(1.1);
  }

  @media (max-width: 768px) {
      .content {
          top: 50%;
          left: 50%;
          width: 100%;
      }

      .content h1 {
          font-size: 2rem;
      }

      .content p {
          font-size: 1.2rem;
      }

      .btn-custom {
          font-size: 1rem;
          padding: 8px 20px;
      }
  }

  /* Features Section */
  .features {
      padding: 50px 0;
      text-align: center;
      background-color: #f8f9fa;
  }

  .features h2 {
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 30px;
  }

  /* Feature Box Styling */
  .feature-item .box {
      padding: 20px;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
      cursor: pointer;
      height: 100%;
      background: #eae9f099;
  }




  /* Hover Effect */
  .feature-item .box:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      background-color: #007bff;
  }

  .feature-item .box:hover .icon,
  .feature-item .box:hover h4,
  .feature-item .box:hover p {
      color: white;
  }

  .icon {
      font-size: 3rem;
      margin-bottom: 15px;
      transition: color 0.3s ease-in-out;
  }

  .feature-item h4 {
      font-size: 1.5rem;
      transition: color 0.3s ease-in-out;
  }

  .feature-item p {
      font-size: 1rem;
      transition: color 0.3s ease-in-out;
  }

  .feature-item {
      margin-bottom: 30px;
      /* Ensure space between rows */
  }

  @keyframes slideInFromLeft {
      0% {
          opacity: 0;
          transform: translateX(-100%);
      }

      100% {
          opacity: 1;
          transform: translateX(0);
      }
  }

  .heading-animation {
      animation: slideInFromLeft 1.5s ease-in-out forwards;
      color: black;
  }