header {
    background: linear-gradient(to right, #193576, #012987, #313181);
    padding: 20px 0;
    color: white;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
  
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
  
.logo img {
    height: 50px;
    width: 60px;
    border-radius: 15px;
}
  
.brandname {
    font-size: 1.5rem;
    font-weight: bold;
}
  
.navlinks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
  
.navlinks a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
  
.navlinks a:hover {
    color: #ffcc00;
}
  
.order-button {
    background-color: #ffcc00;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    color: #000;
    transition: background-color 0.3s ease;
}
  
.order-button:hover {
    background-color: #e6b800;
}
body{
    background-color: #0b1133;
}
.heading{
    align-items: center;
    align-self: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    justify-self: center;
    margin: 15px;
    padding: 10px;
}
.mainheading{
    align-items: center;
    align-self: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    justify-self: center;
    padding: 5px;
    padding-left: 50px;
    margin: 2px;
    font-size: 50px;
    color: azure;
    font-weight: lighter;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.subheading{
    align-items: center;
    align-self: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    justify-self: center;
    padding: 5px;
    padding-left: 180px;
    margin: 2px;
    font-size: 50px;
    color: azure;
    font-weight: lighter;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.gallery {
    width: 100%;
    padding: 20px;
}

.galleryrowone {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.infocard {
    padding: 15px;
    color: #fff;
    text-align: center;
}

.infocard h6 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}

.infocard p {
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.8;
}
.order-button {
    background-color: #ffcc00;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    color: #000;
    transition: background-color 0.3s ease;
}
  
.order-button:hover {
    background-color: #e6b800;
}