/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background: #003366;
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav a {
    color: white;
    margin-left: 15px;
    font-weight: bold;
}

header nav a:hover {
    color: #ffcc00;
}

.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero .btn {
    background: #ffcc00;
    color: #003366;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
}

.hero .btn:hover {
    background: #ffaa00;
    transition: 0.3s;
}

section {
    padding: 60px 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #003366;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    margin-bottom: 15px;
}

.service-card .btn {
    background: #003366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

.service-card .btn:hover {
    background: #0055aa;
}

footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .services {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
/* Logo styling */
.logo img {
    height: 50px;        /* adjust logo size */
    width: auto;         /* keeps aspect ratio */
}
/* ---------- Clients Section ---------- */
.clients {
    padding: 50px 30px;
    text-align: center;
    background: #f8f8f8;
}
.clients h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.client-logos img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: .8;
    transition: .3s;
}
.client-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}


/* ---------- Gallery Section ---------- */
.gallery {
    padding: 60px 30px;
    text-align: center;
}
.gallery h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 200px;
    transition: .3s;
    cursor: pointer;
}
.gallery-grid img:hover {
    transform: scale(1.04);
}
/* -------- Brands Under Company Section -------- */
.brands-section {
    padding: 60px 30px;
    text-align: center;
    background: #fff;
}
.brands-section h2 {
    font-size: 30px;
    margin-bottom: 10px;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.brand-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 20px;
    transition: .3s ease;
}
.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.brand-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}
.brand-card h3 {
    margin-top: 15px;
    font-size: 22px;
    color: #111;
}
.brand-card p {
    font-size: 14px;
    margin-top: 8px;
    color: #444;
}
