/* Reset & basic styles */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: Inter, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; }
body { color: #1f2937; line-height: 1.6; background: #ffffff; }

/* Navigation Bar */
.navbar {
    background-color: white;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar-logo {
    height: 80px;
    width: auto;
    
}

.services-icon {
    height: 150px;
    width: auto;
}

.navbar-links a {
    color: #0f4c81;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.navbar-links a:hover {
    transform: scale(1.1);
}

/* Header / Hero */
header {
    /* gradient background; transparent logo will show nicely */
    background: linear-gradient(135deg, #0f4c81 0%, #1a73e8 100%);
    color: #fff;
    padding: 48px 20px 56px;
    display: flex;
    justify-content: center;
}

.hero-inner {
    width: 100%;
    max-width: 1100px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

/* Logo */
.site-logo {
    display: block;
    background: transparent; /* ensure no white box */
    max-width: 240px;
    width: 40%;
    height: auto;
    margin-bottom: 14px;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.08));
}

header h1 {
    font-size: clamp(1.5rem, 2.4vw, 2.6rem);
    margin-bottom: 12px;
    font-weight: 600;
    color: #ffffff;
}

header p {
    color: rgba(255,255,255,0.92);
    max-width: 860px;
    margin-bottom: 18px;
    font-size: 1.02rem;
}

.btn-primary {
    background: #ff7a00;
    color: white;
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); }

/* Sections */
section { padding: 64px 20px; max-width: 1100px; margin: 0 auto; }
h2 { font-size: 1.8rem; margin-bottom: 16px; text-align: center; color: #0f172a; }
p.lead { text-align: center; color: #0f172a; max-width: 900px; margin: 0 auto 28px; }
p.lead1 { text-align: center; color: #ffffff; max-width: 900px; margin: 0 auto 28px; }

/* Services */
.services { display:flex; flex-wrap:wrap; gap:20px; justify-content:center; margin-top:12px; }
.service-card {
    background: #f8fafc;
    padding:20px;
    border-radius:10px;
    width: 320px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(15,23,42,0.04);
}
.service-card h3 { margin-bottom:8px; color:#0f172a; }
.service-card p { color:#475569; font-size:0.95rem; }

/* Projects */
.projects { display:flex; flex-wrap:wrap; gap:20px; justify-content:center; margin-top:12px; }
.project-card { background:#eef7ff; padding:18px; border-radius:10px; width: 360px; }

/* CTA */
.cta {
    background: #0f4c81;
    color: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    margin: 32px auto;
    max-width: 900px;
}

/* Contact form */
form { max-width:600px; margin: 0 auto; display:flex; flex-direction:column; gap:12px; }
input[type="text"], input[type="email"], textarea {
    padding:12px; border-radius:8px; border:1px solid #d1d5db; font-size:1rem;
}
textarea { min-height:110px; resize:vertical; }

footer { text-align:center; padding:28px 20px; color:#475569; background:#f8fafc; margin-top:40px; }

/* Responsive */
@media (min-width: 820px) {
    .hero-inner { flex-direction: row; text-align: left; align-items: center; justify-content: space-between; }
    .hero-text { max-width: 640px; }
    .site-logo { width: 200px; margin-bottom:0; }
}

@media (max-width: 520px) {
    .service-card, .project-card { width:100%; }
    .site-logo { width:160px; }
}

.button-action {
    display: flex;
    justify-content: flex-end; /* Moves buttons to the right */
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
  }


  .hero-text {
    text-align: left;
    max-width: 1200px;
    margin: auto;
  }