:root { --primary: #0f4c81; --accent: #00d4ff; --dark: #1a1a1a; --light: #f8f9fa; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 2; color: #333; background: #fff; scroll-behavior: smooth; }
.container { max-width: 1100px; margin: auto; padding: 0 2rem; }

/* Logo Styling */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.navbar-logo {
    height: 50px; /* Adjust this to fit your header height */
    width: auto;
    display: block;
}

/* Hide the text version if you only want the image, 
   or keep it if your logo is just an icon */
.logo-text {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
}

header { background: #fff; padding: 1.2rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 700; font-size: 1.5rem; color: var(--primary); }
.logo span { color: var(--accent); }
nav ul { display: flex; list-style: none; gap: 2rem; align-items: center; }
nav a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.9rem; }

.hero { padding: 7rem 0; background: linear-gradient(135deg, #0f4c81 0%, #062c4e 100%); color: #fff; text-align: center; }
.hero h1 { font-size: 3rem; margin-bottom: 1.5rem; line-height: 1.2; }
.highlight { color: var(--accent); }
.hero p { font-size: 1.2rem; opacity: 0.9; max-width: 700px; margin: 0 auto 2.5rem; }

.btn-primary { background: var(--accent); color: var(--primary); padding: 0.9rem 2rem; border-radius: 5px; text-decoration: none; font-weight: 700; border: none; cursor: pointer; }
.btn-secondary { border: 2px solid #fff; color: #fff; padding: 0.8rem 1.8rem; border-radius: 5px; text-decoration: none; font-weight: 600; margin-left: 10px; }
.btn-small { background: var(--primary); color: #fff !important; padding: 0.5rem 1.2rem; border-radius: 4px; }

.about-mission { padding: 5rem 0; text-align: center; }
.mission-content p { font-size: 1.15rem; color: #555; max-width: 800px; margin: 0 auto; }

.features-section { padding: 5rem 0; background: #f9fbfd; }
.features-header { text-align: center; margin-bottom: 3rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.feature-item { background: #fff; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.feature-item .icon { font-size: 2rem; margin-bottom: 1rem; }

.portfolio { padding: 5rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; font-size: 2rem; color: var(--primary); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.port-card { border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
.port-header { background: var(--primary); color: #fff; padding: 1rem; font-weight: 700; font-size: 0.85rem; }
.port-card ul { list-style: none; padding: 1.5rem; }
.port-card li { margin-bottom: 0.7rem; font-size: 0.9rem; border-bottom: 1px solid #f9f9f9; }

.why-joptech { padding: 5rem 0; background: #062c4e; color: #fff; }
.why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.check-item { margin-bottom: 1rem; padding-left: 1.5rem; position: relative; }
.check-item::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-box { background: rgba(255,255,255,0.05); padding: 1.5rem; border-radius: 8px; text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 700; color: var(--accent); }

.contact { padding: 5rem 0; }
.contact-wrapper { max-width: 600px; margin: 0 auto; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 0.8rem; margin-bottom: 1rem; border: 1px solid #ddd; border-radius: 4px; }
.contact-form .btn-primary { width: 100%; }

footer { background: var(--dark); color: #fff; padding: 2rem 0; text-align: center; }

@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
    nav ul { display: none; }
}