.jlb-header img,
.custom-logo {
  max-height: 55px;
  width: auto;
}
/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 140px 0;
    color: #fff;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(3, 21, 45, 0.75);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-content .subtitle {
    color: #ef4444;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 30px;
    margin-right: 12px;
    border-radius: 4px;
    font-weight: 700;
}

.btn-primary {
    background: #ef4444;
    color: #fff;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

/* Services */
.services-section {
    padding: 80px 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service-box {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* Featured Project */
.featured-project {
    background: #03152d;
    color: #fff;
    padding: 80px 0;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.project-image img {
    width: 100%;
    border-radius: 12px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.testimonial-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* CTA Section */
.cta-section {
    background: #ef4444;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid,
    .testimonial-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .btn-primary,
    .btn-secondary {
        display: block;
        margin-bottom: 12px;
        margin-right: 0;
        text-align: center;
    }
}