<style>
    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f5f7fa;
      color: #333;
    }

    header {
      background: linear-gradient(135deg, #0000ff 0%, #FF007F 100%);
      color: #ffffff;
      text-align: center;
      padding: 20px 20px 20px;
      animation: fadeInDown 1s ease-out;
    }
    .logo
    {
      width : 50;
      aspect-ratio: 4/3;
      position: fixed;
      right: 0;
      bottom: 0;
    }

    header h1 {
      font-size: 3em;
      margin-bottom: 10px;
    }

    header p {
      font-size: 1.2em;
      margin-top: 10px;
      font-weight: 500;
    }

    nav {
      background: linear-gradient(135deg, #FF007F 0%, #0000FF 100%);
      display: flex;
      justify-content: center;
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    nav a {
      color: #ffffff;
      text-decoration: none;
      margin: 0 20px;
      font-weight: bold;
      font-size: 1.1em;
      transition: color 0.3s, transform 0.3s;
    }

    nav a:hover {
      color: #e5e4e2;
      transform: translateY(-2px);
    }

    /* SCROLLING IMAGES SECTION */
    .carousel {
      overflow: hidden;
      white-space: nowrap;
      background-color: #ffffff;
      padding: 20px 0;
      box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .carousel-track {
      display: inline-block;
      animation: scroll 40s linear infinite;
    }

    .carousel img {
      height: 300px;
      margin: 0 30px;
      vertical-align: middle;
      border-radius: 8px;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    section {
      padding: 10px 20px;
      text-align: center;
    }

    section h2 {
      color: #0000FF;
      margin-bottom: 20px;
      font-size: 2.4em;
    }
    .contact-info {
      max-width: 800px;
      margin: 40px auto 0;
      background: #ffffff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.08);
      text-align: left;
    }
    .contact-info h3 {
      color: #0000FF;
      margin-bottom: 10px;
    }
    .contact-info p {
      font-size: 18px;
      color: #555;
      line-height: 1.8;
      margin: 10px 0;
    }
    section p {
      font-size: 18px;
      color: #555;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .button {
      background-color: #FF007F;
      color: #ffffff;
      padding: 14px 30px;
      text-decoration: none;
      border-radius: 8px;
      display: inline-block;
      margin-top: 30px;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .button:hover {
      background-color: #a62d33;
      transform: translateY(-4px);
    }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 40px auto 0;
      padding: 0 20px;
    }
    .product-card-link {
      text-decoration: none;
      color: inherit;
    }
    .product-card {
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.08);
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease;
      height: 350px; /* Fixed height */
      width: 250px; /* Fixed width */
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .product-card:hover {
      transform: translateY(-6px);
    }
    .mission-vision {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      margin-top: 40px;
    }
    .mission-vision div {
      background: #ffffff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.08);
      max-width: 400px;
      flex: 1;
    }
    .mission-vision h3 {
      color: #FF007F;
      margin-bottom: 15px;
    }
    .product-card img {
      height: 150px;
      object-fit: cover;
      margin-bottom: 15px;
      border-radius: 8px;
    }
    .product-card h3 {
      color: #FF007F;
      margin-bottom: 10px;
      font-size: 1.3em;
    }
    .product-card p {
      font-size: 16px;
      color: #555;
    }
    .nsproducts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 40px auto 0;
      padding: 0 20px;
    }
    .nsproduct-card {
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.08);
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease;
      cursor: pointer;
      display: block;
      text-decoration: none;
    }
    .nsproduct-card:hover {
      transform: translateY(-6px);
    }
    .nsproduct-card img {
      height: 100px;
      object-fit: cover;
      margin-bottom: 15px;
      border-radius: 8px;
    }
    .nsproduct-card h3 {
      color: #FF007F;
      margin-bottom: 10px;
      font-size: 1.3em;
    }
    .nsproduct-card p {
      font-size: 16px;
      color: #555;
    }
    footer {
      background: linear-gradient(135deg, #0000ff 0%, #FF007F 100%);
      color: white;
      text-align: center;
      padding: 10px;
      font-size: 14px;
      margin-top: 10px;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      nav a {
        margin: 0 10px;
        font-size: 1em;
      }

      header h1 {
        font-size: 2.2em;
      }

      section h2 {
        font-size: 2em;
      }
      .carousel img {
        height: 100px;
        margin: 0 15px;
      }
    }
    .email-btn {
      background-color: #0073e6;
      color: white;
    }

    .email-btn:hover {
      background-color: #005bb5;
    }

    .whatsapp-btn {
      background-color: #25d366;
      color: white;
    }

    .whatsapp-btn:hover {
      background-color: #1ebe5d;
    }
  </style>