body {
    background: linear-gradient(to left, #193576, #012987, #313181);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}
  
.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 {
    color: aliceblue;
    font-weight: bolder;
    font-size: 60px;
    padding: 0px 40px;
    float: left;
    text-align: center;
    width: 100%;
    line-height: 75px;
}
.subheading{
    font-size: 15px;
    color: azure;
    font-weight: lighter;
    font-family: Georgia, 'Times New Roman', Times, serif;
    align-items: center;
    align-self: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    justify-self: center;
}
.gallery {
    width: 100%;
    padding: 20px;
}

.galleryrowone {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background-color: #1b1e5c;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    padding-bottom: 20px;
}

.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;
}
form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #071a46;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    color: #f5f5f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

label {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: none;
    border-radius: 8px;
    background: rgb(0 0 0 / 25%);
    color: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #5f9cff;
    background: #333;
}

button[type="submit"] {
    margin-top: 20px;
    padding: 12px 20px;
    background: #5f9cff;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background: #3a7bd5;
}
.ondemandform h2{
    font-size: 30px;
    color: aliceblue;
    text-align:center;
}
.ondemandform h5{
    font-size: 20px;
    color: aliceblue;
    text-align:center;
}

header {
    background-color: rgb(0 0 0 / 16%);
    padding: 10px 0px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    footer {
        background-color: #11285d !important;
        border-top: 1px solid #0a1b41;
        padding: 10px !important;
        margin-top: 20px !important;
    }
}