
/* styles.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

header {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.logo {
    height: 55px; /* Adjust as per your logo’s proportion */
    width: auto;
    object-fit: contain;
    cursor: pointer;
}

nav a {
    color: #7b2ff7;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: opacity 0.3s, transform 0.2s;
}

nav a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('header.png') center/cover;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    background: #ffdd57;
    color: #333;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #fff;
}

.about .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    flex-wrap: wrap;
    gap: 40px;
}

.about img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about .text {
    flex: 1;
    min-width: 280px;
}

.about h2 {
    color: #7b2ff7;
    margin-bottom: 15px;
    font-size: 30px;
}

.services {
    text-align: center;
    padding: 80px 10%;
    background: #fdf3ff;
}

.services h2 {
    color: #7b2ff7;
    margin-bottom: 40px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h3 {
    color: #7b2ff7;
    margin: 15px 0 10px;
}

.card p {
    padding: 0 20px 20px;
    font-size: 15px;
}

.clients {
    padding: 80px 10%;
    text-align: center;
}

.clients h2 {
    color: #7b2ff7;
    margin-bottom: 40px;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.logos img {
    width: 150px;
    height: auto;
    opacity: 0.85;
    transition: 0.3s;
}

.logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.contact {
    background: #fdf3ff;
    text-align: center;
    padding: 80px 10%;
}

.contact h2 {
    color: #7b2ff7;
    margin-bottom: 20px;
}

.contact .info p {
    margin: 10px 0;
    font-size: 16px;
}

footer {
    background: linear-gradient(90deg, #7b2ff7, #f107a3);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 15px 20px;
    }

    .logo {
        height: 50px;
        margin-bottom: 10px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        margin: 8px 12px;
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .about .container {
        flex-direction: column;
        text-align: center;
    }
}
