* {
    color: white;
    font-family: "Ubuntu", sans-serif;
    font-size: 1rem;
  }
  
  
  /* header */
  
    @media only screen and (min-width: 1125px){
    #cart{
      float: right;
    }
  }
  
  nav {
    width: 100%;
    background: linear-gradient(135deg, #0a2540 0%, #1a4d7a 100%);
    border-radius: 5px;
    margin-top: 15px;
  }
  
  nav ul {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  
  nav ul li {
    list-style: none;
    display: inline-block;
    padding: 10px;
    transition: all 0.3s ease;
  }
  
  nav ul li:hover {
    background-color: rgba(0, 69, 230, 0.22);
    cursor: pointer;
  }
  
  nav ul li a {
    text-decoration: none;
  }
  
  .toggle {
    width: 100%;
    padding: 10px 20px;
    text-align: right;
    box-sizing: border-box;
    display: none;
  }
  
  @media (max-width:600px) {
    #logoimg {
      width: 80% !important;
    }
  
    #numheader {
      width: 98% !important;
    }
  }
  
  @media (max-width:1125px) {
    .toggle {
      display: block;
    }
  
    nav ul {
      width: 100%;
      display: none;
    }
  
    nav ul li {
      display: block;
      text-align: center;
    }
  
    .active {
      display: block;
    }
  
    #numheader {
      text-align: center;
      width: 99%;
      position: inherit !important;
    }
  
    #logo {
      width: 80%;
    }
  
    #logodiv {
      text-align: center;
    }
  
    #logoandnumheader {
      display: block !important;
    }
  
    #logoimg {
      width: 60%;
    }
  }
  
  .bar {
    width: 30px;
    height: 4px;
    background-color: rgb(0, 153, 255);
    margin: 6px 0;
  }
  
  .menu {
    width: fit-content;
    transition: all ease 0.3s;
  }
  
  .menu:hover {
    cursor: pointer;
    transform: scale(1.1);
  }
  
  #logoandnumheader {
    height: fit-content;
    display: flex;
  }
  
  #numheader {
    position: absolute;
    right: 0;
    padding-right: 5%;
  }
  
  #selectedmenu {
    color: rgb(0, 229, 255);
  }
  
  .zlandbt {
    color: rgb(0, 191, 255);
    text-decoration: none;
  }
  
  header {
    padding-top: 10px;
  }
  
  
  /* paralax */
  
  body {
    background-image: url(paralax.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 90%;
    padding-left: 5%;
  }
  
  
  /* footer */

.footer {
            background: linear-gradient(135deg, #0a2540 0%, #1a4d7a 100%);
            color: #fff;
            padding: 60px 40px 20px;
            border-radius: 12px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
            margin-top: 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #5eb8ff;
            font-weight: 600;
        }

        .footer-section p, .footer-section a {
            color: #e0e0e0;
            text-decoration: none;
            line-height: 1.8;
            font-size: 14px;
            display: block;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: #5eb8ff;
            padding-left: 5px;
        }

        .contact-item {
            display: flex;
            align-items: start;
            margin-bottom: 15px;
            gap: 12px;
        }

        .contact-item i {
            color: #5eb8ff;
            font-size: 18px;
            margin-top: 3px;
            min-width: 20px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info strong {
            display: block;
            color: #fff;
            margin-bottom: 5px;
        }

        .cta-button {
            background: #5eb8ff;
            color: #0a2540;
            padding: 12px 24px;
            border-radius: 6px;
            text-align: center;
            font-weight: 600;
            display: inline-block;
            margin-top: 15px;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #4da3e6;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(94, 184, 255, 0.4);
            padding-left: 24px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #5eb8ff;
            transform: translateY(-3px);
            padding-left: 0;
        }

        .social-links i {
            font-size: 18px;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: #b0b0b0;
            font-size: 13px;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-links a {
            color: #b0b0b0;
            font-size: 13px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #5eb8ff;
        }

        .company-info {
            line-height: 1.6;
        }

        .company-info .logo {
            font-size: 24px;
            font-weight: 700;
            color: #5eb8ff;
            margin-bottom: 15px;
            display: block;
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px 20px 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 10px;
            }
        }

        .footer-section img{
            width: 300px;
        }

  
  #page-up{
    text-decoration: none;
    transition: all 0.3s linear;
    font-size: 200% !important;
    position: fixed;
    bottom: 20px;
    right: 20px;
    box-shadow: 5px 2px 4px rgba(0, 0, 0, 0.3);
    background-color: rgb(0, 119, 255);
    opacity: 0.5;
    border: none;
    text-align: center;
    padding: 3px;
    border-radius: 5px;
    z-index: 1;
  }
  
  #page-up:hover{
    background-color: rgb(0, 119, 255);
    opacity: 1;
  }
  
  
  /* section */

  .hp2, #lih, #p ul, #aquah6{
    /* blur */
    background-color: transparent;
    backdrop-filter: blur(3px);
}
  
  .hp {
    background-color: rgb(0, 54, 85);
    color: rgb(69, 224, 255);
    padding: 20px 10px;
    border-top: 1px white solid;
    border-bottom: 1px white solid;
    font-size: 1.25rem;
  }
  
  #lih {
    padding: 0;
    margin: 0;
    padding: 0px 10px;
  }
  
  #p ul {
    list-style: square;
    width: fit-content;
  }
  
  .hp2 {
    color: rgb(69, 224, 255);
    border-bottom: 1px solid white;
    border-top: 1px solid white;
    padding: 20px 10px 20px 10px;
  }
  
  .hp3 {
    color: rgb(69, 224, 255);
    padding: 20px 10px;
  }
  
.container{
    max-width: 2000px;
    width: 90%;
    margin: auto;
    padding: 40py 0;
  }
  
  .photo-gallery{
    display: flex;
    gap: 20px;
  }
  
  .column{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .photo img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    border: rgba(255, 255, 255, 0.624) solid 1px;
    cursor: zoom-in;
  }
  
  @media (max-width:768px){
    .photo-gallery{
      flex-direction: column;
    }
  }