:root { 
    --primary: #6366f1; 
    --text: #374151; 
    --white: #ffffff; 
    --bg: #f9fafb; 
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Roboto', sans-serif; 
    line-height: 1.6; 
    color: var(--text); 
}

h1, h2, h3 { 
    font-family: 'Montserrat', sans-serif; 
    color: var(--primary); 
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.bg-light { background: var(--bg); }
.text-center { text-align: center; }

/* HEADER & LOGO CONFIG */
header { 
    background: var(--white); 
    padding: 10px 0; /* Slightly reduced padding for a cleaner look */
    border-bottom: 1px solid #eee; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
}

.nav-wrapper { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo-img {
    height: 50px; /* Adjust this value to make your logo larger or smaller */
    width: auto;
    display: block;
}

nav ul { 
    list-style: none; 
    display: flex; 
    gap: 20px; 
    align-items: center;
}

nav a { 
    text-decoration: none; 
    color: var(--text); 
    font-weight: 500; 
}

/* HERO SECTION */
.hero { padding: 100px 0; background: #f3f4f6; text-align: left; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; }

/* BUTTONS */
.btn { 
    display: inline-block; 
    background: var(--primary); 
    color: white; 
    padding: 12px 25px; 
    text-decoration: none; 
    border-radius: 5px; 
    margin-top: 20px; 
    font-weight: bold;
}

.btn-small { 
    background: var(--primary); 
    color: white !important; /* Forces text to stay white */
    padding: 8px 15px; 
    border-radius: 4px; 
    text-decoration: none; 
}

/* CONTENT GRID */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 30px; }
.card { background: white; padding: 30px; border: 1px solid #e5e7eb; border-radius: 8px; }

/* IMAGE EFFECTS */
.image-box img { 
    width: 100%; 
    border-radius: 8px; 
    box-shadow: 15px 15px 0 var(--primary); 
}

footer { background: #111; color: #777; padding: 30px 0; text-align: center; }

/* RESPONSIVE DESIGN */
@media (max-width: 768px) { 
    .grid-2 { grid-template-columns: 1fr; } 
    .hero h1 { font-size: 2.2rem; } 
    .nav-wrapper { flex-direction: column; gap: 15px; }
}
