  /* Base Reset & Fonts */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
  }

  body {
    background: #0e1a2b;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  /* Navigation */
  nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(14, 26, 43, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInDown 0.6s ease-out forwards;
  }

  @keyframes slideInDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }

  .logo {
    width: 80px;
    height: auto;
    border-radius: 19%;
  }

  .logo-text {
    color: #40E0D0	;
    padding-left: 20px;
    padding-top: 25px;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 1px;
  }

  .logo-container {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: -15px;
  }

  nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
  }

  nav ul li {
    position: relative;
    cursor: pointer;
    transition: color 0.3s;
  }

  nav ul li:hover {
    color: #00d9ff;
  }

  nav ul li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #00d9ff;
    transition: width 0.3s ease-in-out;
  }

  nav ul li:hover::after {
    width: 100%;
  }

  /* Dropdown Menu */
  nav ul li.dropdown {
    position: relative;
  }

  nav ul li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background-color: rgba(14, 26, 43, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 6px 12px rgba(0, 206, 209, 0.15);
    z-index: 1000;
  }

  nav ul li.dropdown:hover .dropdown-menu {
    display: block;
  }

  nav ul li.dropdown .dropdown-menu li {
    padding: 10px 16px;
    white-space: nowrap;
    transition: background 0.3s;
  }

  nav ul li.dropdown .dropdown-menu li:hover {
    background-color: rgba(0, 217, 255, 0.1);
  }

  nav ul li.dropdown .dropdown-menu li a {
    display: block;
    color: white;
  }

  /* Section Title */
  .section-title, .section-title1 {
    margin-top: 7%;
    text-align: center;
    padding: 30px 10px;
    font-size: 2.2rem;
    color: #1de2e2;
    text-shadow: 0 0 8px rgba(29, 226, 226, 0.4);
    animation: fadeIn 1s ease-in;
  }
  .section-title1{
    margin-top: -20px;
    font-size: 2rem;
  }
  .section-title1:hover{
    transform: scale(1.05);

  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Product Container */
  .product-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }

  /* Product Section */
  .product-section {
    margin-bottom: 50px;
    padding: 20px;
    background-color: #fff;
    color: #002b5b;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-in-out both;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .product-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 206, 209, 0.2);
  }

  .product-flex {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }

  .product-content,
  .product-image {
    flex: 1;
    min-width: 300px;
  }

  .product-image {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .product-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .product-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 206, 209, 0.3);
  }

  /* Headings */
  .product-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #001f3f;
  }

  .product-section h3 {
    color: #00ced1;
    margin: 20px 0 10px;
  }

  /* List */
  .product-section ul {
    list-style-type: none;
    padding-left: 20px;
    color: #002b5b;
  }

  .product-section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
  }

  .product-section ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #00ced1;
    font-weight: bold;
  }

  /* Footer */
  footer {
    background-color: #002147;
    color: #e8eef3;
    text-align: center;
    padding: 25px 20px;
    font-size: 0.95rem;
    box-shadow: inset 0 1px 0 rgba(0, 206, 209, 0.2);
  }

  footer a {
    color: #00ced1;
    margin: 0 8px;
    font-weight: 600;
    transition: color 0.3s;
  }

  footer a:hover {
    color: #00a2a3;
    text-decoration: underline;
  }

  footer p:last-child {
    margin-top: 20px;
    font-style: italic;
    font-weight: 500;
  }

  footer a img {
    width: 26px;
    height: 26px;
    vertical-align: middle;
    margin-left: 8px;
    transition: transform 0.2s ease;
  }

  footer a:hover img {
    transform: scale(1.15);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .product-flex {
      flex-direction: column;
    }

    .product-content,
    .product-image {
      text-align: center;
    }

    .logo-container {
      margin-top: 0;
    }

    nav {
      padding: 15px 20px;
    }

    nav ul {
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .section-title {
      font-size: 1.8rem;
    }

    .product-section {
      padding: 15px;
    }

    footer {
      font-size: 0.85rem;
    }

    nav ul li.dropdown .dropdown-menu {
      position: static;
      box-shadow: none;
      border: none;
      background-color: transparent;
      backdrop-filter: none;
    }

    nav ul li.dropdown .dropdown-menu li {
      padding: 8px 12px;
    }
  }
