body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

header {
    background: #0d1b2a;
    padding: 15px 0;
}

.container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 80px;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    font-size: 22px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #ff6b00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.section {
    padding: 70px 20px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.hero-image {
    width: 100%;
    max-width: 900px;
    margin-top: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.gallery-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;

    margin-top: 40px;
}

.gallery-grid img {
    width: 100%;

    height: 300px;

    object-fit: contain;

    background: white;

    padding: 10px;

    border-radius: 12px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: auto;
    }
}
.card ul {
    list-style: none;

    padding: 0;

    margin-top: 15px;

    text-align: left;
}

.card ul li {
    margin-bottom: 12px;

    line-height: 1.6;
}
.hero-images{
display:flex;
justify-content:center;
align-items:center;
gap:30px;
flex-wrap:wrap;
}

.hero-images img{
max-width:300px;
height:auto;
}

.gallery-grid img{
width:100%;
max-width:250px;
height:auto;
object-fit:cover;
}
