@charset "UTF-8";

    /* General Styles */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      font-size: 16px;
      scroll-behavior: smooth;
    }

    section {
      padding: 2em 1em;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }
    ul {
      list-style: none; /* Remove default bullets */
      padding-left: 1.5em; /* Space for the custom bullet */
    }
    
    ul li {
      position: relative;
      padding-left: 2rem; /* Adjust to make space for the icon */
      text-align: left;
    }
    
    ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.3em; /* Adjust to vertically center the icon */
      width: 16px; /* Set icon size */
      height: 16px;
      background-image: url('../images/bulletIcon.png');
      background-size: contain;
      background-repeat: no-repeat;
    }
    /* Hero Section */
    .hero {
      height: 100vh;
      background: linear-gradient(to right, #21457F, #028AD4);
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
      background-size: 300% 100%;
    }

    .hero h1 {
      font-size: 3em;
      margin-bottom: 0.5em;
    }

    .hero p {
      font-size: 1.5em;
      margin-bottom: 1.5em;
    }

    .hero img {
        width: 15em;
        margin: 1em auto;
        animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .qualities {
      background: #f9f9f9;
      display: flex;
      justify-content: space-around;
      align-items: center;
      text-align: center;
      padding: 1em 0;
      font-size: 1.2em;
    }

    .qualities div {
      padding: 1em;
      border-radius: 5px;
      transition: background-color 0.3s, color 0.3s;
    }

    .qualities div:hover {
      background-color: #028AD4;
      color: white;
    }

    /* Product Section */
    .product-section {
      position: relative;
      background: url('../images/banner.png') no-repeat left center/cover;
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2em;
    }

    .product-section h2 {
      font-size: 2.5em;
      margin-bottom: 1em;
    }

    .product-section ul {
      list-style: none;
      padding: 0;
    }

    .product-section ul li {
      margin: 0.5em 0;
    }

    /* Importance Section */
    .importance {
      text-align: center;
      padding: 6em;
      display:flex;
      gap: 6em;
      box-sizing: border-box;
    }

    .importance h2 {
      margin-bottom: 1em;
      color: #21457F;
    }

    .importance p {
      line-height: 1.6;
      
    }
    .importanceText {
      align-self: center;
    }
    /* Applications Section */
    .applications {
      padding: 3em 1em;
      background: #21457F;
      color: white;
    }

    .applications h2 {
      text-align: center;
      margin-bottom: 1em;
    }

    .application-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2em;
      text-align: center;
    }

    .application {
      background: #fff;
      color: #21457F;
      border-radius: 5px;
      padding: 2em;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }

    .application:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .application img {
      width: 100%;
      max-width: 170px;
      height: auto;
      margin-bottom: 1em;
      transition: transform 0.3s;
    }

    .application:hover img {
      transform: scale(1.2);
    }

    .textBoxB {
      text-align: center;
      padding: 4em 2em;
    }

    .textBoxB a {
      color: #028AD4;
      font-weight: bold;
      text-decoration: none;
    }
    .textBoxB img {
      width: 20em;
    }

    /* Sticky CTA */
    .cta {
      background: #21457F;
      color: white;
      text-align: center;
      padding: 2em 1em;
      position: sticky;
      bottom: 0;
      z-index: 10;
    }

    .cta h2 {
      margin-bottom: 1em;
    }

    .cta button {
      background-color: #FFD700;
      border: none;
      padding: 1em 2em;
      font-size: 1em;
      color: #21457F;
      cursor: pointer;
      border-radius: 5px;
      transition: background-color 0.3s;
    }

    .cta button:hover {
      background-color: #FFC107;
    }

    /* Contact Form */
    .contact-form {
      text-align: center;
      padding: 4em 1em;
    }

    .contact-form form {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1em;
    }

    .contact-form input, .contact-form textarea, .contact-form button {
      padding: 0.8em;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1em;
    }

    .contact-form button {
      background: #21457F;
      color: white;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .contact-form button:hover {
      background: #026994;
    }
    .copyright {
        display:flex;
        color: white;
           background: linear-gradient(to right, #21457F, #028AD4);
        justify-content:center;
        align-items:center;
        padding: 1em;
    }
    @media screen and (max-width: 850px) {
      .importance {
        flex-direction: column;
      }
    }
    .hp-field{
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}