/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(7, 21, 45, 0.8), rgba(7, 21, 45, 0.8)), url("../../images/tech.png") no-repeat top center / cover;
    padding: 120px 10%;
    color: white;
    display: flex;
    align-items: center;
    min-height: 450px; /* Ensures enough height to show the lab assistant */
}


.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Main Layout */
.main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 10%;
    align-items: center;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-icon {
    font-size: 28px;
    color: #002d5b;
}

.feature-text h2 {
    font-size: 22px;
    color: #002d5b;
    margin-bottom: 8px;
}

.feature-text p {
    color: #666;
}

/* Collage */
.image-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 15px;
}

.collage-large {
    grid-row: span 2;
}

.image-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-collage img:hover {
    transform: scale(1.02);
}

/* Trust Bar */
.trust-bar {
    background: #fdfdfd;
    display: flex;
    justify-content: space-between;
    padding: 50px 10%;
    border-top: 1px solid #eee;
    text-align: center;
}

.trust-item i {
    font-size: 24px;
    color: #002d5b;
    margin-bottom: 15px;
}

.trust-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 13px;
    color: #888;
}

/* Commitment Banner */
.commitment-banner {
    background: #002d5b;
    color: white;
    margin: 60px 10% 100px;
    padding: 35px 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.banner-icon {
    font-size: 40px;
    background: rgba(255,255,255,0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.banner-text h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.banner-text p {
    opacity: 0.8;
}

/* Responsiveness */
@media (max-width: 992px) {
    .main-container {
        grid-template-columns: 1fr;
    }
    .trust-bar {
        flex-wrap: wrap;
        gap: 30px;
    }
    .trust-item {
        flex: 1 1 30%;
    }
}