.banner-section {
    background-size: cover;       /* Ensures the image covers the section */
    background-position: center;  /* Center the image */
    background-repeat: no-repeat; /* Prevent image repetition */
    height: 700px;                /* Set the height of the banner */
    display: flex;                /* Center content vertically and horizontally */
    align-items: center;          /* Vertical alignment */
    justify-content: center;      /* Horizontal alignment */
    color: white;                 /* Text color */
  }
  

  #content {
    margin-top: 30px;
    
  }
  .contents{
    font-weight: 500;
    font-family: 'Exo', sans-serif;
    font-size: 15px;
    color: #fff;
  }
  .contentslight{
    font-weight: 500;
    font-family: 'Exo', sans-serif;
    font-size: 15px;
    color: #000;
  }
  #content img {
    width: 100%; /* Ensure the logo is responsive */
    height: 80px;    /* Maintain aspect ratio */
  }

  .custom-bullets {
    list-style: none; /* Remove default bullet points */
    padding-left: 20px; /* Add some left padding for indentation */
  }
  .custom-bullet {
    list-style: none; /* Remove default bullet points */
    padding-left: 20px; /* Add some left padding for indentation */
  }
  .bullets-title{
    display: inline-block;
    padding: 2px 10px;
    background: #000;
    border-right: 6px solid #c4db35;
    color: #fff;
    margin-bottom: 20px;
  }
  .custom-bullets li {
    position: relative; /* Position for custom bullet alignment */
    padding-left: 20px; /* Space for the custom bullet */
    margin-bottom: 10px; /* Spacing between bullet points */
    font-size: 16px; /* Text size */
    line-height: 1.6; /* Line height for readability */
    color: #fff;
  }

  .custom-bullets li::before {
    content: ""; /* Empty content for the bullet */
    position: absolute; /* Position relative to the list item */
    top: 50%; /* Align vertically */
    left: 0; /* Position to the left of the text */
    transform: translateY(-50%); /* Center the bullet */
    width: 7px; /* Bullet width */
    height: 7px; /* Bullet height */
    background: #c4db35; /* Bullet color */
    border-radius: 10%; /* Optional: Make the bullet circular */
  }
  .custom-bullet li {
    position: relative; /* Position for custom bullet alignment */
    padding-left: 20px; /* Space for the custom bullet */
    margin-bottom: 10px; /* Spacing between bullet points */
    font-size: 16px; /* Text size */
    line-height: 1.6; /* Line height for readability */
    color: #000;
  }

  .custom-bullet li::before {
    content: ""; /* Empty content for the bullet */
    position: absolute; /* Position relative to the list item */
    top: 50%; /* Align vertically */
    left: 0; /* Position to the left of the text */
    transform: translateY(-50%); /* Center the bullet */
    width: 7px; /* Bullet width */
    height: 7px; /* Bullet height */
    background: #c4db35; /* Bullet color */
    border-radius: 10%; /* Optional: Make the bullet circular */
    border:#fff 1px solid
  }

  .full-image{
    height: 100% !important;
  }

  @media (max-width: 580px) {
    .contentslight{
      padding: 10px;
    }
    .power-image{
      padding: 10px;
    }
    .button-section{
      padding: 10px;
    }
    .contents{
      padding: 10px;
    }
  }


  .custom-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #069; /* Green color */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
  }
  
  .custom-btn i {
    margin-right: 8px; /* Space between icon and text */
  }
  
  .custom-btn:hover {
    background-color: #b9e63e; /* Darker green */
    color: #fff; /* Ensure text color stays white */
  }
  
  .button-section {
    display: flex;
    gap: 10px; 
}
